Set up your workstation for Rails development
In the terminal
git clone [email protected]:crowdAI/crowdai.git
cd crowdai
bundle install
yarn install
rails db:reset
foreman start -f Procfile.dev
Then visit http://localhost:3000 in your browser You can log on with [email protected] / password
(other accounts are in db/seeds.rb)
The database can also be created by
rails db:drop
rails db:create
rails db:migrate
Then to add seeds
rails db:seed