Instamute.io
This project is prototype for easy voice chatting people for online games or anything else. The main idea is create web-app that give you create room in one click and invite your friends by giving them link of this room.
Stack of using technologies you can see in requirements/production.txt (We use python3)
Setup project.
-
If you want to setup project to production stage, you need clone this repository, create python virtual environment, and then just run:
make
It will will install all dependencies, create database and collect static to $root_project/public/static folder. -
If you want to setup project for development on local machine, clone this repository, create python virtual environment, and then run:
make unpack
This will install all dependencies, setup django settings for you, create database, then run test. After that you can easy start server withmake run
command.