A live demo of the app can be found here.
- Set up your environment variables
cp .env.example .env
- Install the dependencies
npm i
- Start the
postgres
container:
# The corresponding values for `<...>` are found in the `.env` file
docker run --rm --name lawyer-postgres -p 5432:5432 \
-e POSTGRES_PASSWORD=<...> \
-e POSTGRES_USER=<...> \
-e POSTGRES_DB=<...> \
-v "$PWD/db/":/docker-entrypoint-initdb.d/ postgres
- Start the server and watch the
style.scss
file:
npm run dev
Note: if this is the first time you're running npm run dev
, you might want to do a CTRL + S
in the style.scss
file so that the css/
directory will be created.