Skip to content

Commit

Permalink
#17 Adding a option to run locally using .env file
Browse files Browse the repository at this point in the history
  • Loading branch information
jesuejunior committed Jul 19, 2020
1 parent 4beb2ce commit 8a712e0
Show file tree
Hide file tree
Showing 4 changed files with 157 additions and 108 deletions.
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@ celerybeat-schedule
*.sage.py

# Environments
.env
prod.env
dev.env
stg.env
.venv
env/
venv/
Expand Down Expand Up @@ -121,7 +123,6 @@ dmypy.json
**/.DS_Store
.idea/*
*.swn
*.env

# serverless
.serverless/
Expand Down
5 changes: 3 additions & 2 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ verify_ssl = true
name = "pypi"

[packages]
pydantic = "==1.4"
aioredis = "==1.3.0"
email-validator = "==1.0.5"
phonenumbers = "==8.12.6"
Expand Down Expand Up @@ -41,7 +40,9 @@ isort-fmt = "isort --apply --recursive -j 4 --line-width 120 --use-parentheses -
isort-check = "isort --check-only --recursive -j 4 --line-width 120 --use-parentheses --no-inline-sort --multi-line 3 --trailing-comma brandenburg tests"
clean = "rm -vrf ./build ./dist ./*.pyc ./*.tgz ./*.egg-info ./out ./*/out ./.mypy_cache ./*/.mypy_cache */.pytest_cache .pytest_cache .serverless/*"

[packages.pydantic]
extras = [ "dotenv",]

[packages.brandenburg]
editable = true
path = "."

Loading

0 comments on commit 8a712e0

Please sign in to comment.