No description
Kumi
8c779ba5e5
Some checks are pending
Docker / build (push) Waiting to run
Introduced a new management command to initialize the database with current data for specified cryptocurrencies (`xmr`, `btc`, `dash`, `zec`, `grin`). This process involves deleting existing data entries and fetching updated historical and market data. This enhancement ensures the application starts with the most recent information, improving data accuracy and reliability. |
||
---|---|---|
.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