##To start the project follow the steps below:
- Activate virtual environment
source venv/bin/activate
- Creation of database:
a. sudo apt-get install mysql-server
b. mysql -u root -p
c. create database etherpad_lite_db;
d. use etherpad_lite_db;
- Making migrations
python manage.py syncdb
- Running the server
python manage.py runserver
- Running node application
cd etherpadproject/etherpad-lite/
bin/run.sh
- Open the browser and goto localhost:8000