No description
Kumi
d87ed7bccc
Some checks are pending
Docker / build (push) Waiting to run
Add the Coin model to the Django admin interface for easier management of coin data through the admin panel. This provides administrators with a graphical interface to directly view, edit, and maintain instances of the Coin model within the application. |
||
---|---|---|
.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