No description
Find a file
2023-04-17 13:10:49 -04:00
app center-alignment of School quality measures and performance assesments in home/index 2023-04-14 18:04:53 -04:00
bin initial commit 2022-10-02 22:28:13 -07:00
config Add mission page to routes 2023-03-14 13:02:52 -07:00
db Swap out contact form to one that uses mailgun 2022-11-01 15:51:16 -07:00
lib initial commit 2022-10-02 22:28:13 -07:00
log initial commit 2022-10-02 22:28:13 -07:00
public Add link to ecp fact sheet 2023-04-04 14:27:31 -07:00
spec initial commit 2022-10-02 22:28:13 -07:00
storage initial commit 2022-10-02 22:28:13 -07:00
tmp initial commit 2022-10-02 22:28:13 -07:00
vendor initial commit 2022-10-02 22:28:13 -07:00
.gitattributes initial commit 2022-10-02 22:28:13 -07:00
.gitignore initial commit 2022-10-02 22:28:13 -07:00
.rspec initial commit 2022-10-02 22:28:13 -07:00
.ruby-version Updated Ruby to 3.2.2 2023-04-13 19:51:45 -04:00
config.ru initial commit 2022-10-02 22:28:13 -07:00
Gemfile Updated Ruby to 3.2.2 2023-04-13 19:51:45 -04:00
Gemfile.lock center-alignment of School quality measures and performance assesments in home/index 2023-04-17 13:10:49 -04:00
Guardfile Add guard-livereload to automatically reload the browser when files change 2023-03-09 16:02:51 -08:00
package.json Updated esbuild to 0.17.16 2023-04-13 19:51:45 -04:00
Procfile.dev initial commit 2022-10-02 22:28:13 -07:00
Rakefile initial commit 2022-10-02 22:28:13 -07:00
README.md Update README.md 2023-04-13 20:37:10 -04:00
yarn.lock Updated esbuild to 0.17.16 2023-04-13 19:51:45 -04:00

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