RealTimeChat icon indicating copy to clipboard operation
RealTimeChat copied to clipboard

Code for write up on building a real-time chat application

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