Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update juniper references with koa #47

Open
wants to merge 1 commit into
base: edly/k
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -197,16 +197,16 @@ versions.
mkdir edly
cd edly

3. Clone Edly devstack and checkout ``edly/j`` branch and export ``OPENEDX_RELEASE`` environment variable.
3. Clone Edly devstack and checkout ``edly/k`` branch and export ``OPENEDX_RELEASE`` environment variable.
Also, turn off git permission tracking globally.

.. code:: sh

git clone [email protected]:edly-io/devstack.git
cd devstack
git checkout edly/j
export OPENEDX_RELEASE=juniper.master
export COMPOSE_PROJECT_NAME=devstack-juniper.master
git checkout edly/k
export OPENEDX_RELEASE=koa.master
export COMPOSE_PROJECT_NAME=devstack-koa.master
git config --global core.fileMode false

4. Install the requirements inside of a `Python virtualenv`_.
Expand Down Expand Up @@ -251,32 +251,32 @@ Also, turn off git permission tracking globally.
.. code:: sh

cd ../edx-platform
git checkout develop-juniper
git pull origin develop-juniper
git checkout develop-koa
git pull origin develop-koa

9. Go into `ecommerce` directory and checkout to edly branch.

.. code:: sh

cd ../ecommerce
git checkout develop-juniper
git pull origin develop-juniper
git checkout develop-koa
git pull origin develop-koa

10. Go into `course-discovery` directory and checkout to edly branch.

.. code:: sh

cd ../course-discovery
git checkout develop-juniper
git pull origin develop-juniper
git checkout develop-koa
git pull origin develop-koa

11. Go into `credentials` directory and checkout to edly branch.

.. code:: sh

cd ../credentials
git checkout develop-juniper
git pull origin develop-juniper
git checkout develop-koa
git pull origin develop-koa
cd ../devstack

12. Run the provision command, if you haven't already, to configure the various
Expand Down Expand Up @@ -386,7 +386,7 @@ Setup Edly Open edX theme

git clone [email protected]:edly-io/edly-edx-themes.git

4. Checkout to develop-juniper branch if its not already checked out.
4. Checkout to develop-koa branch if its not already checked out.
5. Copy St-lutherx, st-normanx, adroit and gestalt folders to ``edx/edx-platform/themes`` directory.


Expand Down Expand Up @@ -625,21 +625,21 @@ Setup Multisite for Open edX & Wordpress
----------------------------------------

Here is the link to setup Open edX multisite:
https://edlyio.atlassian.net/wiki/spaces/CE/pages/1505558529/Setup+Edly+Multisite+Devstack+Locally+Juniper
https://edlyio.atlassian.net/wiki/spaces/CE/pages/2795405313/Setup+Edly+Devstack+Locally+Koa

Setting up edly panel
---------------------

1. Make sure all the edly services (Wordpress, LMS, Studio, Ecommerce, Course discovery) have been setup using the
edly devstack juniper branch.
edly devstack koa branch.
2. Clone edly panel backend locally in a separate folder than edly.

.. code:: sh

mkdir ~/workspace/edly-panel-backend
cd ~/workspace/edly-panel-backend

3. Follow all the steps from https://github.com/edly-io/edly-panel-backend/tree/develop-juniper
3. Follow all the steps from https://github.com/edly-io/edly-panel-backend/tree/develop-koa
4. Follow Step 4 onwards from this link. https://edlyio.atlassian.net/wiki/spaces/PI/pages/297500692/How+to+setup+Edly+Panel
**NOTE** If you have already installed the ``edly-panel-edx-app``, skip step 11.

Expand Down