Roadmap • Dev setup • Credits • License
To clone and run this application, you'll need Git, Docker and Node. From your command line:
# Clone this repository.
$ git clone https://github.com/cgoat24/la-beuverie
# Go into the repository.
$ cd la-beuverie
# Install dependencies.
$ npm install
# Start the database.
$ docker compose up -d
# Write the database connection string to the environment file.
$ echo "DATABASE_PRISMA_URL=postgresql:https://postgres:[email protected]:5432/la-beuverie" > .env
# Run migrations
$ npm run postinstall
# Optional: seed the database
$ npm run seed:up
# Run tests
$ npm run test
# Start the app.
$ npm run dev
Refer to the LICENSE
file