/tehnici-web-proiect

Just fulfilling some tasks.

Primary LanguageEJS

Effective Lawyer Finder

A live demo of the app can be found here.

Prerequisites


Setting up

  1. Set up your environment variables
cp .env.example .env
  1. Install the dependencies
npm i
  1. 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
  1. 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.


Useful links