├── .env.example ├── .gitignore ├── .open ├── README.md ├── app.py ├── requirements.txt ├── static ├── bootstrap.css ├── bootstrap.js ├── gavel.png ├── gavel.psd ├── main.css └── tailogo.png ├── templates ├── change_password.html ├── index.html ├── login.html └── logout.html └── treatise_engine.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotDoug/TreatiseAI/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotDoug/TreatiseAI/HEAD/.gitignore -------------------------------------------------------------------------------- /.open: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotDoug/TreatiseAI/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotDoug/TreatiseAI/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotDoug/TreatiseAI/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotDoug/TreatiseAI/HEAD/static/bootstrap.css -------------------------------------------------------------------------------- /static/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotDoug/TreatiseAI/HEAD/static/bootstrap.js -------------------------------------------------------------------------------- /static/gavel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotDoug/TreatiseAI/HEAD/static/gavel.png -------------------------------------------------------------------------------- /static/gavel.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotDoug/TreatiseAI/HEAD/static/gavel.psd -------------------------------------------------------------------------------- /static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotDoug/TreatiseAI/HEAD/static/main.css -------------------------------------------------------------------------------- /static/tailogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotDoug/TreatiseAI/HEAD/static/tailogo.png -------------------------------------------------------------------------------- /templates/change_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotDoug/TreatiseAI/HEAD/templates/change_password.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotDoug/TreatiseAI/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotDoug/TreatiseAI/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotDoug/TreatiseAI/HEAD/templates/logout.html -------------------------------------------------------------------------------- /treatise_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotDoug/TreatiseAI/HEAD/treatise_engine.py --------------------------------------------------------------------------------