This is a simple appointments web app for small businesses.
It's being developed using:
- Ruby 3.0.2
- Yarn 1.22.10
- Postgresql 13.2
If you want to run it locally, make sure to set your local Postgresql credentials inside the development section of config/database.yml
before running the db commands:
bundle install
for ruby dependenciesyarn
for node dependenciesrails db:create
to create the databaserails db:migrate
to apply database migrations- finally
rails s
to run the app