├── .gitignore ├── README.md ├── requirements.txt └── template_app ├── app.py └── run.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | venv 3 | app 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetsoftware/Artemis/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetsoftware/Artemis/HEAD/requirements.txt -------------------------------------------------------------------------------- /template_app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetsoftware/Artemis/HEAD/template_app/app.py -------------------------------------------------------------------------------- /template_app/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sweetsoftware/Artemis/HEAD/template_app/run.sh --------------------------------------------------------------------------------