TODO management and reassignment platform which named Andward.
##Installation (Linux)
-Clone project from github.
git clone https://github.com/andward/AndwardTODO.git
-Install reqirment packages (make sure you already has pip).
pip install -r requirements.txt
##Setup your database
-Make sure you has MySQL in your linux.
-Create a database (exp: todo)
Create database todo character set utf8
-Config your database information in settings.py
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql', # mysql
'NAME': 'todo', # Your database name
'USER': 'root', # root
'PASSWORD': 'your password', # your root password
'HOST': 'localhost', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '3306',
}
}
##Go to project folder and sync database
cd AndwardTODO
python manage.py syncdb
python manage.py runserver --nostatic
python manage.py runserver_socketio localhost:9000
Run http://127.0.0.1:8000/task/tag/ALL. You will see the UI.