Skip to content

Latest commit

 

History

History
47 lines (28 loc) · 1.18 KB

Readme.md

File metadata and controls

47 lines (28 loc) · 1.18 KB

So basic, it doesn't even have a name

The most basic signalling server you can get.

Don't even think about using this in production code. We recommend SaltyRTC for secure production signalling.

Prerequisites

  • Python 3.4+
  • pip

We recommend using venv to create an isolated Python environment:

python3 -m venv signaling-venv

You can switch into the created virtual environment signaling-venv by running this command:

source signaling-venv/bin/activate

While the virtual environment is active, all packages installed using pip will be installed into this environment.

To deactivate the virtual environment, just run:

deactivate

If you want easier handling of your virtualenvs, you might also want to take a look at virtualenvwrapper.

Installation

To install the dependencies, activate the virtual environment and run

pip install -r requirements.txt

Usage

Run the server with the following command:

python server.py