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 installCreate and fill database
$ psql -U postgres
create role pssgrs with createdb login password 'pssgrs';
ALTER USER pssgrs WITH SUPERUSER;
\q
$ rake db:setupStart API, frontend and storybook
$ rails s
$ ./bin/webpack-dev-server
$ yarn storybookcc-by-sa-4.0