Skip to content

Commit

Permalink
feat(Pipfile/.gitignore): Pipfile and Pipfile.lock for development en…
Browse files Browse the repository at this point in the history
…vironment / .gitignore
  • Loading branch information
BbsonLin committed Nov 1, 2018
1 parent 6ef1eab commit e1e1860
Show file tree
Hide file tree
Showing 3 changed files with 222 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg
.pytest_cache

# dotenv
.env

# Visual Studio code
.vscode
12 changes: 12 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
Flask = "*"
fs = "*"

[dev-packages]
pytest = "*"
coverage = "*"
181 changes: 181 additions & 0 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e1e1860

Please sign in to comment.