From 7b184c7f3d9f6ab0388ff346b83ef89de9680069 Mon Sep 17 00:00:00 2001 From: Jeff Paine Date: Tue, 4 Mar 2014 09:57:04 -0500 Subject: [PATCH 1/2] Remove .pyc file --- dj_database_url.pyc | Bin 2080 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 dj_database_url.pyc diff --git a/dj_database_url.pyc b/dj_database_url.pyc deleted file mode 100644 index 34f95c43de4abc72e022a901c4f28540534d26c4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2080 zcmb_c-EJFI5T3KU{*9faX^02~VHJc7Qf;Y0K}1o(G=^4clW3h#lpAZ~J#p5tcem%P zL6#D3+6Ukfcmy7SN8mlUc;)`-hi$@1?*qq zZ+8_@h@YY{(FxIPbq*DsD0&e$$kPs8RLMLdrPQ^rOCyi%v7+y^qEUfHMG75yrAXai zcL93~xUhhW3%Im^%L}-&fUAPTB|0flRH3lOA#L;K=9`DDPGJGtGKIx_D`8uqu#64K zSFqiouu9t}Wzr>PhJS1H+NG1K$am>A$njY2HP^vn^d~<1Ss7xQ*lcLD&8oM+%W=kp zr$Y;=G&e+6w38WYi_nVnP>vCC2oFBSra=}3<0#YO26q-~unQi$t>I}B}wHd%{m;RuWu9R4Fa;ojwP=*^4d@N|g^Y)yY+ z2Yw|#S)}x5!Am(VQTmJET8_(<{wlbh;|is}30|gco>S-#^E-D5dIH((#vfb~bA}t-5tjMQyLG4C-kIo0VrDx&&j+b=cmJEG z`(4X;Zp@hW{m%1l#6_3Ne*vir2D+v6Ms}bq*{y(-hh0{3$eB96-;prh&CTBqkJa zj%F7N2c9M-%dY|VJYMCmVwX1a--9IWE6bbf;X2OU!ry*^h1{CwswGt}6rB~ft~R`T zs^V5uU9HM@-7P|1QR_}~3En Date: Tue, 4 Mar 2014 09:57:21 -0500 Subject: [PATCH 2/2] Add .gitignore file --- .gitignore | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ca5c13b --- /dev/null +++ b/.gitignore @@ -0,0 +1,55 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +bin/ +build/ +develop-eggs/ +dist/ +eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +.tox/ +.coverage +.cache +nosetests.xml +coverage.xml + +# Translations +*.mo + +# Mr Developer +.mr.developer.cfg +.project +.pydevproject + +# Rope +.ropeproject + +# Django stuff: +*.log +*.pot + +# Sphinx documentation +docs/_build/ + +# Virtualenv +env/