An application to help organize and plan reservation projects.
The application is tested and developed on Ruby 2.5.1 and Rails 5.2
To run the application locally you must get the config/master.key
file or setup your
own local SECRET_KEY.
To run the application locally for development follow the below commands after installing ruby and Postgresql.
gem install bundler
bundle install
yarn
bundle exec rake db:create db:schema:load db:migrate
bin/webpack
rails s
You can run bin/webpack-dev-server
to run the "hot" webpack server while working
on any React components.
Run the tests with bin/rake
or rspec
Run the tests with yarn test
or yarn test-watch