Initial commit.

This commit is contained in:
Alexander Huddleston 2020-03-01 14:23:01 -06:00
commit 1a4b11e6d9
8 changed files with 27 additions and 0 deletions

5
.gitignore vendored Normal file
View file

@ -0,0 +1,5 @@
**/__pycache__/**
**/*.pyc
Pipfile.lock
**/.vscode/
**/.idea/

19
Pipfile Normal file
View file

@ -0,0 +1,19 @@
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
autopep8 = "*"
pylint = "*"
pipfile = "*"
[packages]
pipfile = "*"
flask = "*"
psycopg2-binary = "*"
sqlalchemy = "*"
flask-sqlalchemy = "*"
[required]
python = "3.8.0"

3
README.md Normal file
View file

@ -0,0 +1,3 @@
# UWU Me!
A small project meant to have a different take on Please-Pet.

0
__init__.py Normal file
View file

0
static/css/index.css Normal file
View file

0
static/js/index.js Normal file
View file

0
templates/index.html Normal file
View file

0
view.py Normal file
View file