A database of shared resources
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
You must create a .env
file to contain local environmental variables, the three that must be supplied are:
The project is managed using the 3 Musketeers methodology and uses GNU Make to run project tasks. Please see the Makefile for all of the rules.
To build the project
make build
To start the web server
make start
To tail the web server logs
make logs
You can combine these together as normal in Make
make build start logs