Implementation of a real-time iOS chat application with Swift and Django
cd into realtimechatios Install the application's dependencies with CocoaPods
$ pod installcd into realtimechatserver Create and activate a python virtual environment
$ virtualenv venv
$ source venv/bin/activateInstall python dependency packages
$ pip install -r requirements.txtInstall redis Run redis and start server
$ redis-server &
$ ./manage.py runserver