Skip to content

Commit

Permalink
Missed Webpack compilation step
Browse files Browse the repository at this point in the history
  • Loading branch information
dyakhnov committed Mar 11, 2021
1 parent 7006d71 commit 413a175
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions docs/admin/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -62,20 +62,22 @@ Then create the ``mytardis`` virtual environment::

mkvirtualenv mytardis

Note: the next time you want to work with this virtualenv, run the appropriate
``source`` command and then use the command: ``workon mytardis``

Make sure you are running Python 3.x::

$ python -V
Python 3.6.9

$ pip -V
pip 21.0.1 from /home/ubuntu/mytardis/mytardis/lib/python3.6/site-packages/pip (python 3.6)

Now upgrade pip and setup tools::

pip install -U pip setuptools

Note: the next time you want to work with this virtualenv, run the appropriate
``source`` command and then use the command: ``workon mytardis``
Check pip version::

$ pip -V
pip 21.0.1 from /home/ubuntu/mytardis/mytardis/lib/python3.6/site-packages/pip (python 3.6)

MyTardis dependencies are then installed with pip::

Expand All @@ -89,6 +91,10 @@ To install Javascript dependencies for production and for testing::

npm install && npm test

To compile Webpack assets::

npm run-script build

Configuring MyTardis is done through a standard Django *settings.py*
file. MyTardis comes with a set of default settings in its
``tardis/default_settings/`` package. You can import this as the basis
Expand Down

0 comments on commit 413a175

Please sign in to comment.