Help new developers get their first paid work and build their resumes to help them land their first Junior developer job!
-
Follow Github instructions on how to Fork this repository.
-
Make sure you have the correct version of Ruby installed (see
.ruby-version). If not, install it if needed with the Ruby version manager that you use.$ asdf install ruby 3.2.2 $ rbenv install 3.2.2 $ rvm install 3.2.2 -
Install all dependencies with bundle
$ bundle install -
Setup Database and run migrations
$ rake db:create $ rake db:migrate --trace -
Start the web server with
$ ./bin/dev
Run bin/rails test:all to run the tests. You can also run rails c for an interactive prompt that will allow you to experiment.