Volunteers are welcome.
Ruby on Rails 7 running with Postgres DB
Copy database.yml.example to config/database.yml
Copy .env.sample to .env
Download VsCode
- Clone repo from git.
- Open in VsCode.
- File -> Open Folder
- Select your cloned location.
- In the bottom left select the blue arrows
- Select "Reopen in container" from the dropdown.
- Install overcommit by running
overcommit
at the root. This will run automatically from then on. - Run
bin/dev
to start the server - Start Developing
Navigate to LooseEnds
- Click on the green Code button:
- Next to the word Codespaces click on the plus symbol:
- Install overcommit by running
overcommit
at the root. This will run automatically from then on. - Run
bin/dev
to start the server - Start Developing
Clone repo from git and start the Rails app as usual.
- Bundle:
bundle
- Create the database:
rails db:create
- Load the Schema:
rails db:schema:load
- Seed the database (optional):
rails db:seed
- Install js dependencies:
yarn install
- Start the dev server:
bin/dev
- create yourself a user through the UI, then set
role = 'admin'
manually in your database
Run the test suite with rake test
Data can be pulled from Heroku.
Get the google api key from another developer to render maps and geocode objects.
bin/dev
In progress with GitHub actions requiring tests to pass
Heroku CLI is installed as part of the docker image. Make sure to log-in via heroku login
to activate the CLI.
To copy and download the QA Database:
heroku pg:backups:capture --app looseends-staging
heroku pg:backups:download --app looseends-staging
pg_restore --verbose --clean --no-acl --no-owner -h db -U postgres -d looseends_development latest.dump
Make sure to run bin/rake db:migrate
after for the latest changes.