Skip to content
This repository has been archived by the owner on Sep 7, 2023. It is now read-only.

Latest commit

 

History

History
47 lines (28 loc) · 926 Bytes

getting-started.rst

File metadata and controls

47 lines (28 loc) · 926 Bytes

Getting started

Installation

  1. Clone the repo, preferably using ssh clone instead of https.

  2. Ensure that the environment has python3.6.

    If it does not have one, then do either of the following:

    • Install from distro
    • Install python3.6 from pyenv
    • Use conda to setup environment for python3.6
  3. Create a virtual environment. Activate it.

  4. Install all requirements.

    $ pip install -r requirements.txt

    Warning

    Installation might take a bit longer depending on the internet speed.

  5. Make sure the setup works by running tests. Refer :ref:`testing:Testing` for more details.

    $ make test
    $ make lint
  6. Generate docs

    $ make docs
  7. To run json log server,

    $ make log-server
  8. Start coding...