Skip to content

Latest commit

 

History

History
54 lines (39 loc) · 1.7 KB

Readme.md

File metadata and controls

54 lines (39 loc) · 1.7 KB

ETUDERS - Timetable creator tool for TOBB ETU

This is a timetable creator tool for students in TOBB ETU. This project has been deployed with heroku free plan.

Here is some screenshots from the application(In Turkish):

This tool needs a TOBB ETU UBS student credentials to work, you should set these credentials in env. variables using these commands:

set txtLogin=TOBB_ETU_USERNAME
set txtPassword=TOBB_ETU_PASSWORD

Firstly, you need python2 and pipenv(pip install --user pipenv)

After that, execute this command:

pipenv install

This will download all packages in the Pipfile and install all dependencies for you.

Lastly, execute this command: In windows:

waitress-serve --listen=*:8000 EtuDers:application

In unix:

gunicorn --listen=*:8000 EtuDers:application

You can access your website in 127.0.0.1:8000