Compare commits
No commits in common. "e632ca23a5f4de494e3e530483bea3d6b2983796" and "33cd9c202e1a164345c615bf73a703a2d6da4044" have entirely different histories.
e632ca23a5
...
33cd9c202e
11
README.md
11
README.md
@ -10,21 +10,12 @@ Install python and pip on local machine
|
|||||||
pip install virtualenv
|
pip install virtualenv
|
||||||
python -m venv venv #/path/to/new/virtual/environment
|
python -m venv venv #/path/to/new/virtual/environment
|
||||||
source venv/bin/activate #activate virtual env
|
source venv/bin/activate #activate virtual env
|
||||||
pip install -r requirments.txt
|
pip install -r requirements.txt
|
||||||
python3 ./init_db.py #initialize database
|
python3 ./init_db.py #initialize database
|
||||||
|
|
||||||
python3 ./run.py #run project
|
python3 ./run.py #run project
|
||||||
```
|
```
|
||||||
|
|
||||||
# On database changes
|
|
||||||
|
|
||||||
Delete file `/instance/taskmanager.db`
|
|
||||||
And reinit the db
|
|
||||||
|
|
||||||
```shell
|
|
||||||
python3 ./init_db.py
|
|
||||||
```
|
|
||||||
|
|
||||||
# Build app
|
# Build app
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
@ -1,14 +1,10 @@
|
|||||||
import configparser
|
|
||||||
import os
|
|
||||||
|
|
||||||
from flask import render_template, request, redirect
|
from flask import render_template, request, redirect
|
||||||
|
|
||||||
from taskmanager import app, db
|
from taskmanager import app, db
|
||||||
from taskmanager.functions import *
|
from taskmanager.functions import *
|
||||||
from taskmanager.models import *
|
from taskmanager.models import *
|
||||||
|
import configparser
|
||||||
|
|
||||||
PROJECT_PATH = os.path.abspath(os.path.dirname(__file__))
|
CONFIG_PATH = "/var/taskmanager/taskmanager/config.ini"
|
||||||
CONFIG_PATH = os.path.join(PROJECT_PATH, "config.ini")
|
|
||||||
|
|
||||||
config = configparser.ConfigParser()
|
config = configparser.ConfigParser()
|
||||||
config.read(CONFIG_PATH)
|
config.read(CONFIG_PATH)
|
||||||
|
Loading…
Reference in New Issue
Block a user