Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add files via upload
  • Loading branch information
elu14001 committed Feb 12, 2020
0 parents commit b0ee719
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
@@ -0,0 +1,8 @@
# PetTherapy
Web application developed in Python with Django framework for University of Connecticut's Pet Therapy program.

To run the application, run the following in your terminal after you clone the repo;

python3 manage.py runserver

For More information, please contact me at allan.feng@uconn.edu
21 changes: 21 additions & 0 deletions manage.py
@@ -0,0 +1,21 @@
#!/usr/bin/env python
"""Django's command-line utility for administrative tasks."""
import os
import sys


def main():
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'mysite.settings')
try:
from django.core.management import execute_from_command_line
except ImportError as exc:
raise ImportError(
"Couldn't import Django. Are you sure it's installed and "
"available on your PYTHONPATH environment variable? Did you "
"forget to activate a virtual environment?"
) from exc
execute_from_command_line(sys.argv)


if __name__ == '__main__':
main()

0 comments on commit b0ee719

Please sign in to comment.