this server configed for nourse project.
npm install
Or
yarn
database has location cordination so it's need postgis extention.
for install it on ubuntu use following command:
sudo apt install postgis postgresql-14-postgis-3
after installing extention you can create database via following command in postgerss command line
CREATE DATABASE "test-db";
\connect "test-db";
CREATE EXTENSION postgis;
to migrate the database use following command
cd server
npx sequelize-cli db:migrate
npm run dev
Or
yarn dev
npm run start Or yarn start