Files
html/generated/file_07.sh
2026-04-12 22:57:03 +02:00

7 lines
240 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# run.sh démarrage zero-config
#!/usr/bin/env bash
set -e
python -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
python cli.py createadmin --email admin@weval.ma
python -m uvicorn api:app --reload --port 8000