diff options
author | Akshen | 2019-02-22 11:57:49 +0530 |
---|---|---|
committer | Akshen | 2019-02-22 11:57:49 +0530 |
commit | df35e10de960c0a2566df002faa1f8fa7828ba51 (patch) | |
tree | c452236ede04930f895d06c8d8973487538dad09 | |
parent | dd647ee3f5c0eb77fc04024c9864cd69a963bc16 (diff) | |
download | FOSSEE_animations-df35e10de960c0a2566df002faa1f8fa7828ba51.tar.gz FOSSEE_animations-df35e10de960c0a2566df002faa1f8fa7828ba51.tar.bz2 FOSSEE_animations-df35e10de960c0a2566df002faa1f8fa7828ba51.zip |
GitIgnore and Requirements.txt
-rw-r--r-- | .gitignore | 48 | ||||
-rw-r--r-- | requirements.txt | 2 |
2 files changed, 50 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8b5c84e --- /dev/null +++ b/.gitignore @@ -0,0 +1,48 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# Distribution / packaging +.Python +*.log +develop-eggs/ +eggs/ +.eggs/ +lib/ +*.egg-info/ +.installed.cfg +*.egg +pip-log.txt +pip-delete-this-directory.txt + +# Django stuff: +*.log +local_settings.py + +# PyBuilder +target/ + +#Database +db.sqlite3 + +# Django Migration files +migrations/ + +#MAC OS specific +.DS_Store + +#Emacs +\#*# +#Vim +*.swp + +#images/gif +*.png +*.gif + +#VS code +.vscode/ + +index_clutter.html +base_clutter.html diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..1efdb8d --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +Django==1.11 +pytz==2018.9 |