├── .circleci └── config.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── app ├── db.sqlite3 ├── djangotip │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py └── products │ ├── __init__.py │ ├── apps.py │ ├── decorators.py │ ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── load_products.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ ├── queries.py │ └── tests │ ├── __init__.py │ ├── test_models.py │ └── test_queries.py ├── requirements.txt └── setup.cfg /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasMagnum/django-tip-02/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasMagnum/django-tip-02/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasMagnum/django-tip-02/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasMagnum/django-tip-02/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasMagnum/django-tip-02/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasMagnum/django-tip-02/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasMagnum/django-tip-02/HEAD/README.md -------------------------------------------------------------------------------- /app/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasMagnum/django-tip-02/HEAD/app/db.sqlite3 -------------------------------------------------------------------------------- /app/djangotip/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/djangotip/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasMagnum/django-tip-02/HEAD/app/djangotip/settings.py -------------------------------------------------------------------------------- /app/djangotip/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasMagnum/django-tip-02/HEAD/app/djangotip/urls.py -------------------------------------------------------------------------------- /app/djangotip/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasMagnum/django-tip-02/HEAD/app/djangotip/wsgi.py -------------------------------------------------------------------------------- /app/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasMagnum/django-tip-02/HEAD/app/manage.py -------------------------------------------------------------------------------- /app/products/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/products/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasMagnum/django-tip-02/HEAD/app/products/apps.py -------------------------------------------------------------------------------- /app/products/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasMagnum/django-tip-02/HEAD/app/products/decorators.py -------------------------------------------------------------------------------- /app/products/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/products/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/products/management/commands/load_products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasMagnum/django-tip-02/HEAD/app/products/management/commands/load_products.py -------------------------------------------------------------------------------- /app/products/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasMagnum/django-tip-02/HEAD/app/products/migrations/0001_initial.py -------------------------------------------------------------------------------- /app/products/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/products/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasMagnum/django-tip-02/HEAD/app/products/models.py -------------------------------------------------------------------------------- /app/products/queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasMagnum/django-tip-02/HEAD/app/products/queries.py -------------------------------------------------------------------------------- /app/products/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/products/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasMagnum/django-tip-02/HEAD/app/products/tests/test_models.py -------------------------------------------------------------------------------- /app/products/tests/test_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasMagnum/django-tip-02/HEAD/app/products/tests/test_queries.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Django 2 | flake8 -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasMagnum/django-tip-02/HEAD/setup.cfg --------------------------------------------------------------------------------