diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bafa384 --- /dev/null +++ b/.gitignore @@ -0,0 +1,130 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db + +# Database +*.db +*.sqlite +*.sqlite3 + +# Logs +*.log +logs/ + +# Temporary files +*.tmp +*.temp + diff --git a/__pycache__/config.cpython-312.pyc b/__pycache__/config.cpython-312.pyc index d53c6bc..679e552 100644 Binary files a/__pycache__/config.cpython-312.pyc and b/__pycache__/config.cpython-312.pyc differ diff --git a/app.py b/app.py index 82efe7b..c17679e 100644 --- a/app.py +++ b/app.py @@ -1,3 +1,4 @@ +#rjb from flask_prompt_master import create_app app = create_app() diff --git a/flask_prompt_master/__pycache__/__init__.cpython-312.pyc b/flask_prompt_master/__pycache__/__init__.cpython-312.pyc index 8f3e16a..ffc5b9e 100644 Binary files a/flask_prompt_master/__pycache__/__init__.cpython-312.pyc and b/flask_prompt_master/__pycache__/__init__.cpython-312.pyc differ diff --git a/flask_prompt_master/__pycache__/forms.cpython-312.pyc b/flask_prompt_master/__pycache__/forms.cpython-312.pyc index 828a4fd..39d12ac 100644 Binary files a/flask_prompt_master/__pycache__/forms.cpython-312.pyc and b/flask_prompt_master/__pycache__/forms.cpython-312.pyc differ diff --git a/flask_prompt_master/__pycache__/init_db.cpython-312.pyc b/flask_prompt_master/__pycache__/init_db.cpython-312.pyc index 9f2b0e5..e0e7a52 100644 Binary files a/flask_prompt_master/__pycache__/init_db.cpython-312.pyc and b/flask_prompt_master/__pycache__/init_db.cpython-312.pyc differ diff --git a/flask_prompt_master/__pycache__/models.cpython-312.pyc b/flask_prompt_master/__pycache__/models.cpython-312.pyc index c0b2549..0e52017 100644 Binary files a/flask_prompt_master/__pycache__/models.cpython-312.pyc and b/flask_prompt_master/__pycache__/models.cpython-312.pyc differ diff --git a/flask_prompt_master/__pycache__/routes.cpython-312.pyc b/flask_prompt_master/__pycache__/routes.cpython-312.pyc index 6824d7a..d9e7b0f 100644 Binary files a/flask_prompt_master/__pycache__/routes.cpython-312.pyc and b/flask_prompt_master/__pycache__/routes.cpython-312.pyc differ diff --git a/flask_prompt_master/templates/__pycache__/__init__.cpython-312.pyc b/flask_prompt_master/templates/__pycache__/__init__.cpython-312.pyc index 6704c96..62a9cdc 100644 Binary files a/flask_prompt_master/templates/__pycache__/__init__.cpython-312.pyc and b/flask_prompt_master/templates/__pycache__/__init__.cpython-312.pyc differ diff --git a/flask_prompt_master/templates/__pycache__/prompts.cpython-312.pyc b/flask_prompt_master/templates/__pycache__/prompts.cpython-312.pyc index ddc52fe..4bce577 100644 Binary files a/flask_prompt_master/templates/__pycache__/prompts.cpython-312.pyc and b/flask_prompt_master/templates/__pycache__/prompts.cpython-312.pyc differ