-
Notifications
You must be signed in to change notification settings - Fork 2
Running
MPieniak edited this page Jan 31, 2026
·
1 revision
We use make to simplify startup commands. Ensure you are in the project root and your venv is active (source .venv/bin/activate).
Best for coding and testing.
`make start`
Starts Backend API (Port 8000)
Starts Next.js Frontend (Port 3000)
Enables Hot-Reload
Production Mode (Stable)
Best for usage / demonstrations. Lower resource usage.
Bash
`make start-prod`
Light Profiles (Save RAM)
If you have limited RAM (e.g. laptop), you can run components separately:
Bash
# Run ONLY Backend API
`make api`
# Run ONLY Frontend UI
`make web`
Stopping
To stop all processes and free up ports:
Bash
`make stop`
Status Check
To see PIDs and active ports:
Bash
make status