Skip to content

Latest commit

 

History

History
51 lines (31 loc) · 1.87 KB

run-multiple-projects.md

File metadata and controls

51 lines (31 loc) · 1.87 KB

Run Multiple Projects

One at a Time

Note By default, multiple projects can not be run simultaneously.1

To stop one project, and run another:

  1. Cancel any active make start output i.e. press control + C.

  2. Take down one project.

    Note This is equivalent to deleting the relevant set of related containers in Docker Desktop.

    make stop
  3. Update custom settings.

    Update taccsite_cms/settings_custom.py with respective cms.settings_custom.py from Core Portal Deployments e.g. /lccf/camino/cms.settings_custom.py.

  4. Start the other project.

    Note This retains containers and volumes e.g. database, search index.

    Warning With these instructions, if a project has different apps installed, and especially if you used those apps on your local CMS, you will likely encounter an error. This document can not help you solve such an error.1

    Follow Core CMS: Getting Started: Build & Start the Docker Containers instructions.

Simultaneous Projects

Warning With these instructions, you will not be able to use the database (nor internal search index) of an already set up custom project (i.e. its local volumes).

To run multiple projects simultaneously:

  1. Create another clone of Core CMS.
  2. Set up the CMS in that clone.
  3. Set up the other project in that CMS.

Footnotes

  1. If you want to run multiple projects simultaneously, and avoid the Warning for multiple projects, see Simultaneous Projects. 2