!WARNING! DEVELOPMENT BRANCH
Third year University of Glasgow Computer Science project
Project Supervisor:Dr John H. Williamson - [email protected]
Project will allow for multiple users on Android devices to capture audio and then upload recordings to a server. On a web client, users will be able to interact with different users recordings as they sync up in time in the same location. Imagined case uses could be demonstrations, concerts or disaster areas.
Contributors:
Keir 'Kaffo' Smith, Ally Weir, Peter Yordanov, Georgi Dimitrov, and Gordon Adam
=========================
Installation
- Clone this repo
- cd to repo location
- sudo apt-get install mysql mysql-server mysql-python
- pip install south
- mysql -u root -p
- CREATE DATABASE mdrsDatabase;
- CREATE USER 'mdrs'@'localhost' IDENTIFIED BY 't34mt34mt';
- GRANT ALL PRIVILEGES ON mdrsDatabase.* TO 'mdrs'@'localhost';
- quit
- python manage syncdb
- python manage migrate
- python runserver 0.0.0.0:8080