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.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.rst')
-rw-r--r-- | README.rst | 64 |
1 files changed, 44 insertions, 20 deletions
@@ -29,41 +29,65 @@ Features - Scales to over 500+ simultaneous users. - Distributed under the BSD license. -Quick Start -=========== +Requirements +============ + +Python 3.6, 3.7, 3.8 -Pre-Requisites -^^^^^^^^^^^^^^ +Django 3.0.3 -1. Ensure you have Python available. -2. Ensure `pip <https://pip.pypa.io/en/latest/installing.html>`__ is - installed. Installation -^^^^^^^^^^^^ +============ -1. Install yaksh +**Note**: Currently, only Linux and MacOS is supported for the project. - - Clone the repository +If Python 3.6 and above is not available in the system, then we recommend using +miniconda. Download miniconda with Python 3.6 and above. - :: +**Installing Miniconda** - $ git clone https://github.com/FOSSEE/online_test.git +1. Download miniconda from https://docs.conda.io/en/latest/miniconda.html according to the OS version. - - Go to the online\_test directory +2. Follow the installation instructions as given in https://conda.io/projects/conda/en/latest/user-guide/install/index.html#regular-installation - :: +3. Restart the Terminal. + +**Pre-Requisite** + +* Ensure `pip <https://pip.pypa.io/en/latest/installing.html>`_ is installed + +**Installing Yaksh** + +* **Clone the repository** + + :: - $ cd ./online_test + git clone https://github.com/FOSSEE/online_test.git - - Install the dependencies for local setup +* **Go to the online_test directory** - :: + :: - $ pip install -r ./requirements/requirements-common.txt + cd online_test -Short instructions -^^^^^^^^^^^^^^^^^^ +* **Install the dependencies**: + + * Install Django and dependencies + + :: + + pip3 install -r requirements/requirements-common.txt + + * Install Code Server dependencies + + :: + + sudo pip3 install -r requirements/requirements-codeserver.txt + + +Quick Start +^^^^^^^^^^^ 1. Start up the code server that executes the user code safely: |