From 1a4b11e6d9d38dddc8fc8627ee75b2f7fbe58d33 Mon Sep 17 00:00:00 2001 From: Alexander Huddleston Date: Sun, 1 Mar 2020 14:23:01 -0600 Subject: [PATCH] Initial commit. --- .gitignore | 5 +++++ Pipfile | 19 +++++++++++++++++++ README.md | 3 +++ __init__.py | 0 static/css/index.css | 0 static/js/index.js | 0 templates/index.html | 0 view.py | 0 8 files changed, 27 insertions(+) create mode 100644 .gitignore create mode 100644 Pipfile create mode 100644 README.md create mode 100644 __init__.py create mode 100644 static/css/index.css create mode 100644 static/js/index.js create mode 100644 templates/index.html create mode 100644 view.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..25c92ec --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +**/__pycache__/** +**/*.pyc +Pipfile.lock +**/.vscode/ +**/.idea/ diff --git a/Pipfile b/Pipfile new file mode 100644 index 0000000..283ae0d --- /dev/null +++ b/Pipfile @@ -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" diff --git a/README.md b/README.md new file mode 100644 index 0000000..c3cfdc4 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# UWU Me! + +A small project meant to have a different take on Please-Pet. diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/static/css/index.css b/static/css/index.css new file mode 100644 index 0000000..e69de29 diff --git a/static/js/index.js b/static/js/index.js new file mode 100644 index 0000000..e69de29 diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..e69de29 diff --git a/view.py b/view.py new file mode 100644 index 0000000..e69de29