Add python-dotenv and default .env file

This commit is contained in:
isms 2015-11-02 09:25:23 -05:00
parent f90e83a968
commit 5214aeefa3
2 changed files with 12 additions and 11 deletions

View File

@ -0,0 +1,12 @@
# Environment variables go here, can be read by `python-dotenv` package:
#
# `src/script.py`
# ----------------------------------------------------------------
# import dotenv
#
# project_dir = os.path.join(os.path.dirname(__file__), os.pardir)
# dotenv_path = os.path.join(project_dir, '.env')
# dotenv.load_dotenv(dotenv_path)
# ----------------------------------------------------------------
#
# DO NOT ADD THIS FILE TO VERSION CONTROL!

View File

@ -1,11 +0,0 @@
[MASTER]
load-plugins=pylint_common
[FORMAT]
max-line-length=120
[MESSAGES CONTROL]
disable=missing-docstring,invalid-name
[DESIGN]
max-parents=13