No description
Kumi
7cc291d758
Some checks are pending
Docker / build (push) Waiting to run
- Add '.vscode/' to '.gitignore' to exclude editor settings. - Improve readability by converting single quotes to double quotes and reformatting long lines in Django settings and URLs. - Relocate the SQLite database path to a more standard location. - Enhance environment flexibility by adding dynamic handling for allowed hosts. - Remove deprecated database dependency in requirements. These updates enhance code clarity and maintainability, and prepare the codebase for potential migration to a more dynamic server configuration setup. |
||
---|---|---|
.github/workflows | ||
app | ||
.gitignore | ||
Dockerfile | ||
README.md | ||
requirements.txt |
Moneropro
Initial setup
# on the host
mkdir data
docker run --rm \
-v ./app:/src/app \
-v ./data:/opt \
-p 8080:8000 moneropro
# in the container
python manage.py makemigrations
python manage.py makemigrations charts
python manage.py migrate
python manage.py createsuperuser