diff options
author | adityacp | 2020-04-07 10:48:50 +0530 |
---|---|---|
committer | adityacp | 2020-04-07 10:48:50 +0530 |
commit | 7fc9dcf4fb0d43b7cf28cd717898ee61bdb7a168 (patch) | |
tree | d0b2578f8864d27aed77aa6805bd427202b7fdd2 /README_production.rst | |
parent | 74c010f92c09d254d8352f4d6a494034d39d9a18 (diff) | |
download | online_test-7fc9dcf4fb0d43b7cf28cd717898ee61bdb7a168.tar.gz online_test-7fc9dcf4fb0d43b7cf28cd717898ee61bdb7a168.tar.bz2 online_test-7fc9dcf4fb0d43b7cf28cd717898ee61bdb7a168.zip |
Update README
Diffstat (limited to 'README_production.rst')
-rw-r--r-- | README_production.rst | 30 |
1 files changed, 23 insertions, 7 deletions
diff --git a/README_production.rst b/README_production.rst index 1126c41..b29fa4f 100644 --- a/README_production.rst +++ b/README_production.rst @@ -5,6 +5,15 @@ This README provides documentation to help deploy Yaksh in a production environment. If you wish to take Yaksh on a trial run, here is a `Quickstart Guide <https://github.com/FOSSEE/online\_test/blob/master/README.rst>`__ + +Requirements +============ + +Python 3.6, 3.7, 3.8 + +Django 3.0.3 + + ################### Deploying Locally ################### @@ -50,16 +59,26 @@ To install this app follow the steps below: :: - $ git clone https://github.com/FOSSEE/online_test.git - $ cd online_test + git clone https://github.com/FOSSEE/online_test.git + + :: + + cd online_test 2. Install Yaksh dependencies, Run :: - pip install -r requirements/requirements-py2.txt # For Python 2 + pip3 install -r requirements/requirements-common.txt + + :: + + pip3 install -r requirements/requirements-py3.txt + + :: + + sudo pip3 install -r requirements/requirements-codeserver.txt - pip3 install -r requirements/requirements-py3.txt # For Python 3 3. Rename the ``.sampleenv`` to ``.env`` @@ -85,9 +104,6 @@ To install this app follow the steps below: :: - $ sudo python -m yaksh.code_server # For Python 2.x - - $ sudo python3 -m yaksh.code_server # For Python 3.x Put this in the background once it has started since this will not |