Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 604 Bytes

README.md

File metadata and controls

34 lines (25 loc) · 604 Bytes

RealTimeChat

Implementation of a real-time iOS chat application with Swift and Django

iOS Setup

cd into realtimechatios Install the application's dependencies with CocoaPods

$ pod install

Server Setup

cd into realtimechatserver Create and activate a python virtual environment

$ virtualenv venv
$ source venv/bin/activate

Install python dependency packages

$ pip install -r requirements.txt

Install redis Run redis and start server

$ redis-server &
$ ./manage.py runserver