Add Application base

Add python ignore types
Add Readme changes for development
This commit is contained in:
Alexander Hosking 2022-04-05 17:34:05 -04:00
parent 2ab796fcee
commit d1c9cfc371
3 changed files with 45 additions and 0 deletions

14
.gitignore vendored
View File

@ -1 +1,15 @@
.env .env
venv/
*.pyc
__pycache__/
instance/
.pytest_cache/
.coverage
htmlcov/
dist/
build/
*.egg-info/

View File

@ -1,2 +1,8 @@
# period # period
## Development
```
export FLASK_APP=period; export FLASK_ENV=development; flask run
```

25
period/__init__.py Normal file
View File

@ -0,0 +1,25 @@
import os
from flask import Flask
def create_app(test_config=None):
app = Flask(__name__, instance_relative_config=True)
app.config.from_mapping(
SECRET_KEY='dev',
DATABASE=os.path.join(app.instance_path, 'period.sqlite')
)
if test_config is None:
app.config.from_pyfile('config.py', silent=True)
else:
app.config.from_mapping(test_config)
try:
os.makedirs(app.instance_path)
except OSError:
pass
@app.route('/hello')
def hello():
return 'Hello, World!'
return app