Skip to content

Commit a918d9a

Browse files
author
SB
committed
first commit
0 parents  commit a918d9a

File tree

8 files changed

+137
-0
lines changed

8 files changed

+137
-0
lines changed

.gitignore

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
*.pyc
2+
### Linux template
3+
*~
4+
5+
# temporary files which can be created if a process still has a handle open of a deleted file
6+
.fuse_hidden*
7+
8+
# KDE directory preferences
9+
.directory
10+
11+
# Linux trash folder which might appear on any partition or disk
12+
.Trash-*
13+
14+
# .nfs files are created when an open file is removed but is still being accessed
15+
.nfs*
16+
### VirtualEnv template
17+
# Virtualenv
18+
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
19+
.Python
20+
[Bb]in
21+
[Ii]nclude
22+
[Ll]ib
23+
[Ll]ib64
24+
[Ll]ocal
25+
[Ss]cripts
26+
pyvenv.cfg
27+
.venv
28+
pip-selfcheck.json
29+
### Python template
30+
# Byte-compiled / optimized / DLL files
31+
__pycache__/
32+
*.py[cod]
33+
*$py.class
34+
35+
# C extensions
36+
*.so
37+
38+
# Distribution / packaging
39+
.Python
40+
env/
41+
build/
42+
develop-eggs/
43+
dist/
44+
downloads/
45+
eggs/
46+
.eggs/
47+
lib/
48+
lib64/
49+
parts/
50+
sdist/
51+
var/
52+
*.egg-info/
53+
.installed.cfg
54+
*.egg
55+
56+
# PyInstaller
57+
# Usually these files are written by a python script from a template
58+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
59+
*.manifest
60+
*.spec
61+
62+
# Installer logs
63+
pip-log.txt
64+
pip-delete-this-directory.txt
65+
66+
# Unit test / coverage reports
67+
htmlcov/
68+
.tox/
69+
.coverage
70+
.coverage.*
71+
.cache
72+
nosetests.xml
73+
coverage.xml
74+
*,cover
75+
.hypothesis/
76+
77+
# Translations
78+
*.mo
79+
*.pot
80+
81+
# Django stuff:
82+
*.log
83+
local_settings.py
84+
85+
# Flask stuff:
86+
instance/
87+
.webassets-cache
88+
89+
# Scrapy stuff:
90+
.scrapy
91+
92+
# Sphinx documentation
93+
docs/_build/
94+
95+
# PyBuilder
96+
target/
97+
98+
# Jupyter Notebook
99+
.ipynb_checkpoints
100+
101+
# pyenv
102+
.python-version
103+
104+
# celery beat schedule file
105+
celerybeat-schedule
106+
107+
# dotenv
108+
.env
109+
110+
# virtualenv
111+
.venv/
112+
venv/
113+
ENV/
114+
115+
# Spyder project settings
116+
.spyderproject
117+
118+
# Rope project settings
119+
.ropeproject
120+

__init__.py

Whitespace-only changes.

admin.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.contrib import admin
2+
3+
# Register your models here.

apps.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from django.apps import AppConfig
2+
3+
4+
class DjangoWebpackIntegrationConfig(AppConfig):
5+
name = 'django_webpack_integration'

migrations/__init__.py

Whitespace-only changes.

models.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.db import models
2+
3+
# Create your models here.

tests.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.test import TestCase
2+
3+
# Create your tests here.

views.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.shortcuts import render
2+
3+
# Create your views here.

0 commit comments

Comments
 (0)