├── .gitignore ├── Pipfile ├── Pipfile.lock ├── README.md ├── __init__.py ├── db_setup.py ├── launch.bat ├── launch.py ├── project ├── __init__.py ├── app.py ├── config.example.py ├── static │ ├── css │ │ └── bootstrap.min.css │ └── js │ │ └── summaryChart.js ├── templates │ ├── admin │ │ ├── index.html │ │ └── master.html │ ├── layouts │ │ ├── analytics.html │ │ ├── core.head.html │ │ ├── core.tail.html │ │ ├── footer.html │ │ ├── form.html │ │ └── main.html │ └── pages │ │ ├── analytics.html │ │ ├── index.html │ │ └── inventory.html └── utils │ ├── __init__.py │ ├── backup.bat │ └── backup.py ├── requirements.txt ├── run.bat └── run.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gassc/simple-inventory/HEAD/.gitignore -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gassc/simple-inventory/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gassc/simple-inventory/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gassc/simple-inventory/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gassc/simple-inventory/HEAD/db_setup.py -------------------------------------------------------------------------------- /launch.bat: -------------------------------------------------------------------------------- 1 | ECHO OFF 2 | CALL ENV\Scripts\activate 3 | START python launch.py -------------------------------------------------------------------------------- /launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gassc/simple-inventory/HEAD/launch.py -------------------------------------------------------------------------------- /project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gassc/simple-inventory/HEAD/project/app.py -------------------------------------------------------------------------------- /project/config.example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gassc/simple-inventory/HEAD/project/config.example.py -------------------------------------------------------------------------------- /project/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gassc/simple-inventory/HEAD/project/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /project/static/js/summaryChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gassc/simple-inventory/HEAD/project/static/js/summaryChart.js -------------------------------------------------------------------------------- /project/templates/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gassc/simple-inventory/HEAD/project/templates/admin/index.html -------------------------------------------------------------------------------- /project/templates/admin/master.html: -------------------------------------------------------------------------------- 1 | {% extends admin_base_template %} 2 | -------------------------------------------------------------------------------- /project/templates/layouts/analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gassc/simple-inventory/HEAD/project/templates/layouts/analytics.html -------------------------------------------------------------------------------- /project/templates/layouts/core.head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gassc/simple-inventory/HEAD/project/templates/layouts/core.head.html -------------------------------------------------------------------------------- /project/templates/layouts/core.tail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gassc/simple-inventory/HEAD/project/templates/layouts/core.tail.html -------------------------------------------------------------------------------- /project/templates/layouts/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gassc/simple-inventory/HEAD/project/templates/layouts/footer.html -------------------------------------------------------------------------------- /project/templates/layouts/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gassc/simple-inventory/HEAD/project/templates/layouts/form.html -------------------------------------------------------------------------------- /project/templates/layouts/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gassc/simple-inventory/HEAD/project/templates/layouts/main.html -------------------------------------------------------------------------------- /project/templates/pages/analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gassc/simple-inventory/HEAD/project/templates/pages/analytics.html -------------------------------------------------------------------------------- /project/templates/pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gassc/simple-inventory/HEAD/project/templates/pages/index.html -------------------------------------------------------------------------------- /project/templates/pages/inventory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gassc/simple-inventory/HEAD/project/templates/pages/inventory.html -------------------------------------------------------------------------------- /project/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/utils/backup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gassc/simple-inventory/HEAD/project/utils/backup.bat -------------------------------------------------------------------------------- /project/utils/backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gassc/simple-inventory/HEAD/project/utils/backup.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gassc/simple-inventory/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gassc/simple-inventory/HEAD/run.bat -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gassc/simple-inventory/HEAD/run.py --------------------------------------------------------------------------------