Skip to content

Latest commit

 

History

History
73 lines (62 loc) · 1.14 KB

README.md

File metadata and controls

73 lines (62 loc) · 1.14 KB

Backend of the T.U.R.S. site.

Prerequisites:

  • Python 3.4 +
  • Django 1.9 +

Run

Open the main directory

python manage.py runserver

The website is hosted to the localhost at port 8000 i.e (http://localhost:8000)


Directory Structure

/turobotics
    +-- /home
    |    +-- /migrations
    |    __init__.py
    |    admin.py
    |    apps.py
    |    models.py
    |    tests.py
    |    urls.py
    |    views.py
    +-- /registration
    |   +-- /migrations
    |    __init__.py
    |    admin.py
    |    apps.py
    |    models.py
    |    forms.py
    |    tests.py
    |    urls.py
    |    views.py 
    +-- /blog
    |   +-- /migrations
    |    __init__.py
    |    admin.py
    |    apps.py
    |    models.py
    |    tests.py
    |    urls.py
    |    views.py       
    +-- /turobotics
    |    __init__.py
    |    settings.py
    |    urls.py
    |    wsgi.py
    +-- /static
    |    |    +-- /css
    |    |    +-- /fonts
    |    |    +-- /img
    |    |    +-- /js
    +-- /templates
    |    |    +-- /home
    |    |    +-- /registration
    |    |    +-- /blog
    +-- /media
    db.sqlite3
    manage.py