Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 495 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 495 Bytes

Lovelines

This is the start of a new art project

To run locally, run

yarn
yarn dev

To get a database working with docker, create a .env file with the following:

DATABASEURL="postgresql://lovelines:password@localhost:5432/lovelines?schema=public"

then run the following from the root folder:

cd docker/db;
docker build --tag lovelinesimage .;
docker run --name lovelinesdb -p 5432:5432 lovelinesimage;
cd ../..;
yarn prisma migrate dev --preview-feature;