Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
joshfriend committed Jun 22, 2018
1 parent 46cff0b commit 47c8f64
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 13 deletions.
1 change: 0 additions & 1 deletion .env

This file was deleted.

2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ Basic requirements for pull requests are as follows:
[placekitten]: https://placekitten.com/
[pypy]: http://pypy.org/download.html
[virtualenv]: http://virtualenv.readthedocs.org/en/latest/virtualenv.html#installation
[pyflakes]: https://pypi.python.org/pypi/pyflakes
[pyflakes]: https://pypi.org/project/pyflakes
[pep8]: http://legacy.python.org/dev/peps/pep-0008/
[pep257]: http://legacy.python.org/dev/peps/pep-0257/
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pypy2.7-5.8.0
2.7.15
14 changes: 6 additions & 8 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@
"pyunit.xml": true,
"**/.cache": true,
"**/__pycache__": true,
"*.dump": true
"*.dump": true,
".coverage": true,
"htmlcov/": true,
".venv/": true
},
"files.trimTrailingWhitespace": true,
"files.associations": {
Expand All @@ -24,18 +27,13 @@
"editor.rulers": [80],
"editor.tabSize": 4,

"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/htmlcov": true
},
"search.useIgnoreFiles": true,

"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.pylintEnabled": false,
"python.linting.pydocstyleEnabled": false,
"python.linting.lintOnTextChange": false,
"python.linting.lintOnSave": true,
"python.linting.flake8Path": "${workspaceRoot}/env/bin/flake8",
"python.pythonPath": "${workspaceRoot}/env/bin/python"
}
}
2 changes: 1 addition & 1 deletion runtime.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pypy-5.8.0
python-2.7.15
2 changes: 1 addition & 1 deletion server.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
cat potatosalad/johncena.txt

gunicorn --config gunicorn.conf.py potatosalad:create_app\(\)

0 comments on commit 47c8f64

Please sign in to comment.