README update
This commit is contained in:
parent
0f1cac531e
commit
5126b9c3db
12
README.md
Normal file
12
README.md
Normal file
@ -0,0 +1,12 @@
|
||||
# Home energy calculator of spot market prices
|
||||
|
||||
This project is an API that provides endpoints to give you easily processable data from Czech spot market.
|
||||
|
||||
To run it yourself run this:
|
||||
|
||||
```
|
||||
python -m venv venv
|
||||
source venv/bin/activate
|
||||
pip install -r requirements.txt
|
||||
fastapi dev calculator/main.py --reload
|
||||
```
|
@ -3,6 +3,9 @@
|
||||
version: '3'
|
||||
|
||||
tasks:
|
||||
dev :
|
||||
cmds:
|
||||
- fastapi dev calculator/main.py --reload
|
||||
deploy:
|
||||
cmds:
|
||||
- ssh -p 11335 app@ssh.rosti.cz mkdir -p /srv/app/cache
|
||||
|
Loading…
Reference in New Issue
Block a user