This application requires:
- Postgres
- Ruby 2.6.5
- Rails 5.2.0
Learn more about Installing Rails.
Installation :
$ rbenv local 2.6.5
$ exec bundle install
$ yarn install
Create and fill database
$ psql -U postgres
create role pssgrs with createdb login password 'pssgrs';
ALTER USER pssgrs WITH SUPERUSER;
\q
$ rake db:setup
Start API, frontend and storybook
$ rails s
$ ./bin/webpack-dev-server
$ yarn storybook
cc-by-sa-4.0