You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The app uses ActiveStorage, which requires some 3rd party libraries to be installed on your system. For the app to work properly, you'll need to install libvips:
brew install vips
Setup user
On a fresh installation of Postgres, a user, postgres will be available. If this is not the case (due to a prior installation of PG or other reasons), you can create the user with the following command:
createuser -s postgres
Start the Project
Start by forking and then cloning the repo locally. Then run the following commands to start the app:
cd maybe
cp .env.example .env
bundle install
bin/rails db:setup
bin/dev