python-getting-started
Barebone WebApp
Running Locally
Make sure you have Python installed properly
$ git clone https://github.com/Siimon13/PAS-Health.git
$ cd PAS-Health
$ pip install -r requirements.txt
$ python manage.py migrate
$ python manage.py collectstatic
$ python manage.py runserver
Your app should now be running on localhost:8000.
Documentation
The app is based in pas The static folder is in gettingstarted(For imgs/js/css)
The templates have examples of loading static and forms
All code is ran through view.py(controller)
Making a new form requires you to add a valid form to form.py Read More
If you want to use a database, use model.py Read More
Database code is added, Database can take sql injections by using raw() Read More
Using Bootstrap for CSS
Log in or sign up for Devpost to join the conversation.