diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2e8c3f4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,41 @@ + +# Created by https://www.gitignore.io/api/vim,git,django + +### 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. +# /staticfiles/ + +### Git ### +*.orig + +### Vim ### +# Swap +[._]*.s[a-v][a-z] +[._]*.sw[a-p] +[._]s[a-rt-v][a-z] +[._]ss[a-gi-z] +[._]sw[a-p] + +# Session +Session.vim + +# Temporary +.netrwhist +*~ +# Auto-generated tag files +tags +# Persistent undo +[._]*.un~ + + +# End of https://www.gitignore.io/api/vim,git,django + diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..7569b6f --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +Django==2.1 +pytz==2018.5