Skip to content
Yashas Kumar edited this page Sep 8, 2015 · 12 revisions

Introduction

This is a guide to starting the Tango server. If you have yet to set up Tango itself, please see the guide on Setting up Tango first.

Instructions

  1. Activate virtualenv.

    $ cd /path/to/Tango
    $ virtualenv .
  2. Run the source script.

    $ cd /path/to/Tango
    $ source bin/activate
  3. Start the Tango Server.

    $ python restful-tango/server.py
  4. When finished with your Tango session, kill the Tango server. Python catches Ctrl-C, so you'll need to use Ctrl-Z followed by kill %1 instead. Then, deactivate virtualenv on the command-line:

    deactivate
Clone this wiki locally