Enable recommended Git Hooks as follows:
git config --local core.hooksPath .githooks/
The above will run the following to ensure code consistency every time you commit:
Also use fit-commit to ensure consistent commit message style.
Use Python 3.8 or higher
Create a file called db.env (choose a db, username, and password):
# Set PostgreSQL credential env variables
POSTGRES_DB=******
POSTGRES_USER=*******
POSTGRES_PASSWORD=*****************Note: In the following commands, docker might need sudo prepended depending
on your setup.
Pull the Docker images and run them
make prod # Might need sudoNow you should be able to use rnpfind by navigating to localhost:80 (or the
public IP of your machine)
Once done, stop and remove by typing Ctrl+C or using docker-compose down