Skip to content

Running

MPieniak edited this page Jan 31, 2026 · 1 revision

Running Venom ▶️

We use make to simplify startup commands. Ensure you are in the project root and your venv is active (source .venv/bin/activate).

Development Mode (Auto-reload)

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

Clone this wiki locally