Skip to content
/ retask Public

Schooling system for checking for done tasks

Notifications You must be signed in to change notification settings

wblazej/retask

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


Semester final project from Python on WSIZ


retask

This is a system for schooling that allowas teachers check how many of students got well with given task. Teacher creates a task for group of students and students mark if it is done or not on their accounts. The teacher can see results live on his account.

Run

Server:

cd api
mkdir secret
echo "your secret key" > secret/secret-key
pip install -r requirements.txt
python api.py

Secret key can be a random string and it allows to store user session data in cookies.

Client:

yarn install
yarn start

This small web app uses SQLite database, which creates by itself while the app is starting if the database does not exists yet.