bin/bundle install
rails db:create
rails db:migrate
rails db:seed
bin/rails s
cp .env.example .env # Fill with your details
docker compose up --builddocker compose run api rails db:create
docker compose run api rails db:schema:load
docker compose run api rails db:seedor run from within the container
docker exec -it flashmemo_api /bin/bash
bin/rails db:create // or whatever command you needrspec .
rubocop -a
After successfully running the application with docker compose the neo4j container should be up and running. Access the neo4j browser at: http://localhost:7474
Open up http://localhost:3000/rails/mailers in your browser.