diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..a29e85a Binary files /dev/null and b/.DS_Store differ diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..7df3e4f --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,27 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Python: Current File", + "type": "python", + "request": "launch", + "program": "${file}", + "console": "integratedTerminal" + }, + { + "name": "Python: Flask", + "type": "python", + "request": "launch", + "module": "flask", + "env": { + "FLASK_APP": "app.py", + "FLASK_ENV": "development" + }, + "args": ["run", "--no-debugger"], + "jinja": true + } + ] +} diff --git a/README.md b/README.md index 647f4b3..ed0cef3 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,6 @@ -# Flask-Blog-Tutorial -A blog application in python using Flask. +# Guill Localhost + +A varity of things that go into this website... + +1. A reordering system for cpap supplies. +2. A menu planning app (recipes, nutrition and planning) diff --git a/__pycache__/app.cpython-38.pyc b/__pycache__/app.cpython-38.pyc new file mode 100644 index 0000000..4cc569a Binary files /dev/null and b/__pycache__/app.cpython-38.pyc differ diff --git a/tutorial1/app.py b/app.py similarity index 100% rename from tutorial1/app.py rename to app.py diff --git a/life.md b/life.md new file mode 100644 index 0000000..aad0e0b --- /dev/null +++ b/life.md @@ -0,0 +1,58 @@ +# Life Program + +## Migration +### Installation + +`pip install Flask-Migrate` + +### Instantiation +Inside the __init__.py file insert the following command after both the app and db have been initalized. + +`Migrate(app, db)` + +### Usage +### Initial + +`flask db init` + +This will come up with a message saying you need to configure a file. Unless there is a specific reason to do so, simply skip that suggestion. +### Every time you change model.py +use the following commands in order in the terminal: + +`flask db migrate` + +`flask db upgrade` + + +## Sections +--- +### Health +#### *Facilities* +#### *Doctors* +#### *Medications* +#### *Medication List* +#### *Hospitalizations* +#### *Allergies* +#### *Surgeries* +#### *A1C* +#### *C-PAP* +---- +### Productivity +#### *Tasks* +#### *Goals* +#### *Projects* +---- +### Menu Planner +#### *Planner* +#### *Reciepts* +#### *Shopping List* +


+ +# THINGS TO DO +