Browse Source

.gitignore et applications.

master
Klafyvel 8 years ago
parent
commit
eab50fd087
  1. 129
      .gitignore
  2. 0
      content/__init__.py
  3. 3
      content/admin.py
  4. 5
      content/apps.py
  5. 0
      content/migrations/__init__.py
  6. 3
      content/models.py
  7. 3
      content/tests.py
  8. 3
      content/views.py
  9. 0
      settings/__init__.py
  10. 3
      settings/admin.py
  11. 5
      settings/apps.py
  12. 0
      settings/migrations/__init__.py
  13. 3
      settings/models.py
  14. 3
      settings/tests.py
  15. 3
      settings/views.py
  16. 0
      users/__init__.py
  17. 3
      users/admin.py
  18. 5
      users/apps.py
  19. 0
      users/migrations/__init__.py
  20. 3
      users/models.py
  21. 3
      users/tests.py
  22. 3
      users/views.py
  23. 0
      vote/__init__.py
  24. 3
      vote/admin.py
  25. 5
      vote/apps.py
  26. 0
      vote/migrations/__init__.py
  27. 3
      vote/models.py
  28. 3
      vote/tests.py
  29. 3
      vote/views.py

129
.gitignore

@ -0,0 +1,129 @@
# Created by https://www.gitignore.io/api/vim,django,python
### Django ###
*.log
*.pot
*.pyc
__pycache__/
local_settings.py
db.sqlite3
media
# If your build process includes running collectstatic, then you probably don't need or want to include staticfiles/
# in your Git repository. Update and uncomment the following line accordingly.
# <django-project-name>/staticfiles/
### Python ###
# Byte-compiled / optimized / DLL files
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
# Translations
*.mo
# Django stuff:
# Flask stuff:
instance/
.webassets-cache
# Scrapy stuff:
.scrapy
# Sphinx documentation
docs/_build/
# PyBuilder
target/
# Jupyter Notebook
.ipynb_checkpoints
# pyenv
.python-version
# celery beat schedule file
celerybeat-schedule.*
# SageMath parsed files
*.sage.py
# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Spyder project settings
.spyderproject
.spyproject
# Rope project settings
.ropeproject
# mkdocs documentation
/site
# mypy
.mypy_cache/
### Vim ###
# swap
.sw[a-p]
.*.sw[a-p]
# session
Session.vim
# temporary
.netrwhist
*~
# auto-generated tag files
tags
# End of https://www.gitignore.io/api/vim,django,python

0
content/__init__.py

3
content/admin.py

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

5
content/apps.py

@ -0,0 +1,5 @@
from django.apps import AppConfig
class ContentConfig(AppConfig):
name = 'content'

0
content/migrations/__init__.py

3
content/models.py

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
content/tests.py

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

3
content/views.py

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.

0
settings/__init__.py

3
settings/admin.py

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

5
settings/apps.py

@ -0,0 +1,5 @@
from django.apps import AppConfig
class SettingsConfig(AppConfig):
name = 'settings'

0
settings/migrations/__init__.py

3
settings/models.py

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
settings/tests.py

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

3
settings/views.py

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.

0
users/__init__.py

3
users/admin.py

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

5
users/apps.py

@ -0,0 +1,5 @@
from django.apps import AppConfig
class UsersConfig(AppConfig):
name = 'users'

0
users/migrations/__init__.py

3
users/models.py

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
users/tests.py

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

3
users/views.py

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.

0
vote/__init__.py

3
vote/admin.py

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

5
vote/apps.py

@ -0,0 +1,5 @@
from django.apps import AppConfig
class VoteConfig(AppConfig):
name = 'vote'

0
vote/migrations/__init__.py

3
vote/models.py

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
vote/tests.py

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

3
vote/views.py

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.
Loading…
Cancel
Save