Team 30B repository
Project title: Trend Identification on Stack Overflow
Client/Supervisor: Dr. Christoph Treude
-
Business case >> click here
-
Poster Presentation >> click the video!
-
Poster (shown below)>> click here
-
Final report (包含使用說明) >> click here
Team members
Tianjiao Jiang (a1807401)
Po-Yi Lee (a1806297)
The master contains all the code.
This branch contains project management documents for milestone 2.
For details please see README.md in this branch.
important for testers/developers: to save your BigQuery quota, please do not enter too many time windows
-
install mysql 8.0
remember your username (= "root" by default) and password -
create a database named "stack" using mysql
-
install all necessary python3 packages:
spacy
google-cloud
google-cloud-bigquery
google-cloud-storage
django 3.0
inflect
pyspellchecker
pymysql -
in mysite/settings.py, set your username and password
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'stack',
'USER': 'root',
'PASSWORD': '', # todo: use your own password
'HOST': '127.0.0.1',
'PORT': '3306',
}
- run the following commands
python manage.py makemigrations
python manage.py migrate
- run the software on port 8000
python manage.py runserver