git clone https://github.com/CUAHSI/hydroprocess-db.git
cd hydroprocess-db
git checkout develop
cp env.template .env
make build
make up
The API will be available at http://0.0.0.0:8001
If you want to load some test data, you can run
make loaddb
To reload the database (destructive, returns to original dump state):
make reloaddb
cp .env.template .env #if you haven't already. Replace `https://localhost` with `http://localhost:5173` (or whatever port is used by Vite)
cd frontend
npm install
npm run dev
The frontend will be available at http://localhost:5173 More detailed info is available in the frontend readme
make format