You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
vineeshathallapaneni@gmail.com 4d311a91ca
center-alignment of School quality measures and performance assesments in home/index
3 years ago
app center-alignment of School quality measures and performance assesments in home/index 3 years ago
bin initial commit 3 years ago
config Add mission page to routes 3 years ago
db Swap out contact form to one that uses mailgun 3 years ago
lib initial commit 3 years ago
log initial commit 3 years ago
public Add link to ecp fact sheet 3 years ago
spec initial commit 3 years ago
storage initial commit 3 years ago
tmp initial commit 3 years ago
vendor initial commit 3 years ago
.gitattributes initial commit 3 years ago
.gitignore initial commit 3 years ago
.rspec initial commit 3 years ago
.ruby-version Updated Ruby to 3.2.2 3 years ago
Gemfile Updated Ruby to 3.2.2 3 years ago
Gemfile.lock center-alignment of School quality measures and performance assesments in home/index 3 years ago
Guardfile Add guard-livereload to automatically reload the browser when files change 3 years ago
Procfile.dev initial commit 3 years ago
README.md Update README.md 3 years ago
Rakefile initial commit 3 years ago
config.ru initial commit 3 years ago
package.json Updated esbuild to 0.17.16 3 years ago
yarn.lock Updated esbuild to 0.17.16 3 years ago

README.md

Starting the Dev Server

The development server can be run by executing the dev file in the bin directory.

bin/dev

When running the development server for the first time, the postgres database will need to be created. You can do this by running rails db:create in the project directory.

Dependencies

Posgres

sudo apt install postgresql-all 

Then check if postgres is running with

sudo systemctl status postgresql.service 

Note: ensure the user you are running postgres as has necessary permissions. They can be added with:

sudo su - postgres
psql # enter postgres console
ALTER USER my_user WITH Superuser;

Added permissions can be confirmed with \du within the psql console.

JavaScript Dependencies

Install JS dependencies with:

yarn install

Guard

Guard is installed and can be run with bundle exec guard