Initial commit.
This commit is contained in:
commit
1a4b11e6d9
8 changed files with 27 additions and 0 deletions
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
**/__pycache__/**
|
||||||
|
**/*.pyc
|
||||||
|
Pipfile.lock
|
||||||
|
**/.vscode/
|
||||||
|
**/.idea/
|
19
Pipfile
Normal file
19
Pipfile
Normal 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
3
README.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# UWU Me!
|
||||||
|
|
||||||
|
A small project meant to have a different take on Please-Pet.
|
0
__init__.py
Normal file
0
__init__.py
Normal file
0
static/css/index.css
Normal file
0
static/css/index.css
Normal file
0
static/js/index.js
Normal file
0
static/js/index.js
Normal file
0
templates/index.html
Normal file
0
templates/index.html
Normal file
0
view.py
Normal file
0
view.py
Normal file
Reference in a new issue