Register and describe locations of interest.
- Postgres
Migrations were created with migr, a janky minimal Postgres migration tool.
The easiest way to install migr is via cargo
cargo install migrmigr requires a DATABASE_URL in the env which is a Postgres connection string.
export DATABASE_URL=<YOUR_CONNECTION_STRING_HERE>To set up the tables, run the following commands on a fresh database instance.
migr sync
migr runThe application needs a .env file.
cp .env.example .envInstall dependencies.
npm iRun!
npm run dev