Test application with two goals:
- Test athix/rails-template in preparation for Aeon Splice using Rails.
- See if BabylonJS, VueJS, and Rails can be combined to create a game engine.
Successful on both accounts, and Aeon Splice is now being worked on in a private repository.
rvm install 2.6.5
rvm use
nvm install 13.0.1
nvm use
gem install bundler
bundle install
yarn install --check-files
- Create:
rails db:create db:migrate db:seed
- Recreate:
rails db:drop db:create db:migrate db:seed
- Interactive console:
rails c
- Specs:
rspec spec
- Server:
rails s
docker-compose build
- Create:
docker-compose run web rails db:create db:migrate db:seed
- Recreate:
docker-compose run web rails db:drop db:create db:migrate db:seed
- Interactive console:
docker-compose run web rails c
- Specs:
docker-compose run web rspec spec
- Server:
docker-compose up