diff options
author | Prashant S | 2019-02-18 16:53:11 +0530 |
---|---|---|
committer | GitHub | 2019-02-18 16:53:11 +0530 |
commit | 33b7be32d0aced65a9f4ebf9801de41e48b9abfc (patch) | |
tree | 84689cd90b66b272ef350705d58fe2ea7371a819 /.gitignore | |
parent | b63385c838b958a5d58bccd013c4e635669ceb8a (diff) | |
parent | 7b2421c19ae723fbfff2753522b2bdd1a90316e2 (diff) | |
download | pyfoss-33b7be32d0aced65a9f4ebf9801de41e48b9abfc.tar.gz pyfoss-33b7be32d0aced65a9f4ebf9801de41e48b9abfc.tar.bz2 pyfoss-33b7be32d0aced65a9f4ebf9801de41e48b9abfc.zip |
Merge pull request #3 from Akshen/develop
Migrates from 1.5 to 1.10
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..545cd16 --- /dev/null +++ b/.gitignore @@ -0,0 +1,35 @@ +# 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 +db1.sqlite3 +db2.sqlite3 + +# Django Migration files +migrations/ + +#MAC OS specific +.DS_Store + |