Skip to content
Snippets Groups Projects
Commit a51ac07e authored by Erik Reid's avatar Erik Reid
Browse files

Finished feature rename-module.

parents e492f9ca cf92a018
No related branches found
No related tags found
No related merge requests found
Showing
with 9 additions and 9 deletions
......@@ -12,7 +12,7 @@ This is a dummy implementation of a trunk service in workflow orchestrator. The
- ``pip install -e .``
- Create ``oss-params.json``
- Export the oss-params file: ``export OSS_PARAMS_FILENAME="/path/to/file.json"``
- The core of workflow orchestrator can be started with ``uvicorn --host 0.0.0.0 --port 8080 main:app`` from inside the ``geant_service_orchestrator`` directory of this repo.
- The core of workflow orchestrator can be started with ``uvicorn --host 0.0.0.0 --port 8080 main:app`` from inside the ``gso`` directory of this repo.
- The GUI can be started with ``yarn start``.
## Structure description
......
File moved
File moved
from orchestrator import OrchestratorCore
from orchestrator.cli.main import app as core_cli
from orchestrator.settings import AppSettings
import geant_service_orchestrator.products # noqa: F401
import geant_service_orchestrator.workflows # noqa: F401
import gso.products # noqa: F401
import gso.workflows # noqa: F401
app = OrchestratorCore(base_settings=AppSettings())
......
from orchestrator.domain import SUBSCRIPTION_MODEL_REGISTRY
from geant_service_orchestrator.products.product_types.device import Device
from gso.products.product_types.device import Device
SUBSCRIPTION_MODEL_REGISTRY.update(
{
......
from orchestrator.domain.base import SubscriptionModel
from orchestrator.types import SubscriptionLifecycle, strEnum
from geant_service_orchestrator.products.product_blocks.device \
from gso.products.product_blocks.device \
import DeviceBlock, DeviceBlockInactive, DeviceBlockProvisioning
......
import ipaddress
from pydantic import BaseSettings
from geant_service_orchestrator import settings
from gso import settings
class ServiceNetworks(BaseSettings):
......
from geant_service_orchestrator.products.product_types.device \
from gso.products.product_types.device \
import DeviceBlock
from geant_service_orchestrator import settings
from gso import settings
import requests
......
from geant_service_orchestrator import settings
from gso import settings
import requests
......
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment