├── .gitignore ├── Berksfile ├── Dockerfile ├── LICENSE ├── README.md ├── Vagrantfile ├── alembic.ini ├── alembic ├── README ├── env.py ├── script.py.mako └── versions │ ├── 4fe474604dbb_add_stores_managers_.py │ └── 5a0e003fafb2_first_revision.py ├── docs ├── Makefile ├── _static │ └── .gitignore ├── _templates │ └── .gitignore ├── api.rst ├── architecture.rst ├── conf.py ├── index.rst └── make.bat ├── manage.py ├── overholt ├── __init__.py ├── api │ ├── __init__.py │ ├── products.py │ ├── stores.py │ └── users.py ├── core.py ├── factory.py ├── forms.py ├── frontend │ ├── __init__.py │ ├── assets.py │ ├── dashboard.py │ ├── static │ │ ├── coffee │ │ │ ├── dashboard.coffee │ │ │ └── utils.coffee │ │ ├── css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.min.css │ │ │ ├── overholt.css │ │ │ └── overholt.min.css │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ ├── js │ │ │ ├── main.js │ │ │ ├── vendor.min.js │ │ │ └── vendor │ │ │ │ ├── backbone-1.0.0.min.js │ │ │ │ ├── bootstrap-2.3.3.min.js │ │ │ │ ├── jquery-1.10.1.min.js │ │ │ │ └── underscore-1.4.4.min.js │ │ └── less │ │ │ ├── elements.less │ │ │ └── overholt.less │ └── templates │ │ ├── dashboard.html │ │ ├── errors │ │ ├── 404.html │ │ └── 500.html │ │ ├── layouts │ │ ├── _menu.html │ │ ├── _messages.html │ │ └── boilerplate.html │ │ ├── macros │ │ └── forms.html │ │ └── security │ │ └── login_user.html ├── helpers.py ├── manage │ ├── __init__.py │ ├── products.py │ ├── stores.py │ └── users.py ├── middleware.py ├── models.py ├── products │ ├── __init__.py │ ├── forms.py │ └── models.py ├── services.py ├── settings.py ├── stores │ ├── __init__.py │ ├── forms.py │ └── models.py ├── tasks.py └── users │ ├── __init__.py │ ├── forms.py │ └── models.py ├── requirements.txt ├── tests ├── __init__.py ├── api │ ├── __init__.py │ ├── product_tests.py │ ├── store_tests.py │ └── user_tests.py ├── factories.py ├── frontend │ ├── __init__.py │ └── dashboard_tests.py ├── settings.py └── utils.py ├── wercker.yml └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/.gitignore -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/Berksfile -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/Vagrantfile -------------------------------------------------------------------------------- /alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/alembic.ini -------------------------------------------------------------------------------- /alembic/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /alembic/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/alembic/env.py -------------------------------------------------------------------------------- /alembic/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/alembic/script.py.mako -------------------------------------------------------------------------------- /alembic/versions/4fe474604dbb_add_stores_managers_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/alembic/versions/4fe474604dbb_add_stores_managers_.py -------------------------------------------------------------------------------- /alembic/versions/5a0e003fafb2_first_revision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/alembic/versions/5a0e003fafb2_first_revision.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_templates/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/docs/architecture.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/docs/make.bat -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/manage.py -------------------------------------------------------------------------------- /overholt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/__init__.py -------------------------------------------------------------------------------- /overholt/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/api/__init__.py -------------------------------------------------------------------------------- /overholt/api/products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/api/products.py -------------------------------------------------------------------------------- /overholt/api/stores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/api/stores.py -------------------------------------------------------------------------------- /overholt/api/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/api/users.py -------------------------------------------------------------------------------- /overholt/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/core.py -------------------------------------------------------------------------------- /overholt/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/factory.py -------------------------------------------------------------------------------- /overholt/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/forms.py -------------------------------------------------------------------------------- /overholt/frontend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/frontend/__init__.py -------------------------------------------------------------------------------- /overholt/frontend/assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/frontend/assets.py -------------------------------------------------------------------------------- /overholt/frontend/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/frontend/dashboard.py -------------------------------------------------------------------------------- /overholt/frontend/static/coffee/dashboard.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/frontend/static/coffee/dashboard.coffee -------------------------------------------------------------------------------- /overholt/frontend/static/coffee/utils.coffee: -------------------------------------------------------------------------------- 1 | # utils.coffee 2 | -------------------------------------------------------------------------------- /overholt/frontend/static/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/frontend/static/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /overholt/frontend/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/frontend/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /overholt/frontend/static/css/overholt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/frontend/static/css/overholt.css -------------------------------------------------------------------------------- /overholt/frontend/static/css/overholt.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/frontend/static/css/overholt.min.css -------------------------------------------------------------------------------- /overholt/frontend/static/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/frontend/static/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /overholt/frontend/static/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/frontend/static/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /overholt/frontend/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/frontend/static/js/main.js -------------------------------------------------------------------------------- /overholt/frontend/static/js/vendor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/frontend/static/js/vendor.min.js -------------------------------------------------------------------------------- /overholt/frontend/static/js/vendor/backbone-1.0.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/frontend/static/js/vendor/backbone-1.0.0.min.js -------------------------------------------------------------------------------- /overholt/frontend/static/js/vendor/bootstrap-2.3.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/frontend/static/js/vendor/bootstrap-2.3.3.min.js -------------------------------------------------------------------------------- /overholt/frontend/static/js/vendor/jquery-1.10.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/frontend/static/js/vendor/jquery-1.10.1.min.js -------------------------------------------------------------------------------- /overholt/frontend/static/js/vendor/underscore-1.4.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/frontend/static/js/vendor/underscore-1.4.4.min.js -------------------------------------------------------------------------------- /overholt/frontend/static/less/elements.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/frontend/static/less/elements.less -------------------------------------------------------------------------------- /overholt/frontend/static/less/overholt.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/frontend/static/less/overholt.less -------------------------------------------------------------------------------- /overholt/frontend/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/frontend/templates/dashboard.html -------------------------------------------------------------------------------- /overholt/frontend/templates/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/frontend/templates/errors/404.html -------------------------------------------------------------------------------- /overholt/frontend/templates/errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/frontend/templates/errors/500.html -------------------------------------------------------------------------------- /overholt/frontend/templates/layouts/_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/frontend/templates/layouts/_menu.html -------------------------------------------------------------------------------- /overholt/frontend/templates/layouts/_messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/frontend/templates/layouts/_messages.html -------------------------------------------------------------------------------- /overholt/frontend/templates/layouts/boilerplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/frontend/templates/layouts/boilerplate.html -------------------------------------------------------------------------------- /overholt/frontend/templates/macros/forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/frontend/templates/macros/forms.html -------------------------------------------------------------------------------- /overholt/frontend/templates/security/login_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/frontend/templates/security/login_user.html -------------------------------------------------------------------------------- /overholt/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/helpers.py -------------------------------------------------------------------------------- /overholt/manage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/manage/__init__.py -------------------------------------------------------------------------------- /overholt/manage/products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/manage/products.py -------------------------------------------------------------------------------- /overholt/manage/stores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/manage/stores.py -------------------------------------------------------------------------------- /overholt/manage/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/manage/users.py -------------------------------------------------------------------------------- /overholt/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/middleware.py -------------------------------------------------------------------------------- /overholt/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/models.py -------------------------------------------------------------------------------- /overholt/products/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/products/__init__.py -------------------------------------------------------------------------------- /overholt/products/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/products/forms.py -------------------------------------------------------------------------------- /overholt/products/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/products/models.py -------------------------------------------------------------------------------- /overholt/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/services.py -------------------------------------------------------------------------------- /overholt/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/settings.py -------------------------------------------------------------------------------- /overholt/stores/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/stores/__init__.py -------------------------------------------------------------------------------- /overholt/stores/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/stores/forms.py -------------------------------------------------------------------------------- /overholt/stores/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/stores/models.py -------------------------------------------------------------------------------- /overholt/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/tasks.py -------------------------------------------------------------------------------- /overholt/users/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/users/__init__.py -------------------------------------------------------------------------------- /overholt/users/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/users/forms.py -------------------------------------------------------------------------------- /overholt/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/overholt/users/models.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/tests/api/__init__.py -------------------------------------------------------------------------------- /tests/api/product_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/tests/api/product_tests.py -------------------------------------------------------------------------------- /tests/api/store_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/tests/api/store_tests.py -------------------------------------------------------------------------------- /tests/api/user_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/tests/api/user_tests.py -------------------------------------------------------------------------------- /tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/tests/factories.py -------------------------------------------------------------------------------- /tests/frontend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/tests/frontend/__init__.py -------------------------------------------------------------------------------- /tests/frontend/dashboard_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/tests/frontend/dashboard_tests.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/tests/utils.py -------------------------------------------------------------------------------- /wercker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/wercker.yml -------------------------------------------------------------------------------- /wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattupstate/overholt/HEAD/wsgi.py --------------------------------------------------------------------------------