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

added initial revision in the versions folder

parent dec7eb2f
No related branches found
No related tags found
1 merge request!4Device product and initial workflow
......@@ -8,7 +8,7 @@ file_template = %%(year)d-%%(month).2d-%%(day).2d_%%(rev)s_%%(slug)s
# the 'revision' command, regardless of autogenerate
# revision_environment = false
script_location = migrations
version_locations = %(here)s/migrations/versions/schema
version_locations = %(here)s/migrations/versions
# Logging configuration
[loggers]
keys = root,sqlalchemy,alembic
......@@ -42,4 +42,5 @@ formatter = generic
[formatter_generic]
format = %(levelname)-5.5s [%(name)s] %(message)s
datefmt = %H:%M:%S
\ No newline at end of file
datefmt = %H:%M:%S
from orchestrator import OrchestratorCore
from orchestrator.cli.main import app as core_cli
from orchestrator.settings import AppSettings
#import products
import geant_service_orchestrator.products
#import workflows
......
from orchestrator.domain import SUBSCRIPTION_MODEL_REGISTRY
from products.product_types.device import Device
from geant_service_orchestrator.products.product_types.device import Device
SUBSCRIPTION_MODEL_REGISTRY.update(
{
......
from orchestrator.domain.base import SubscriptionModel
from orchestrator.types import SubscriptionLifecycle, strEnum
from products.product_blocks.device import DeviceBlock, DeviceBlockInactive, DeviceBlockProvisioning
from geant_service_orchestrator.products.product_blocks.device \
import DeviceBlock, DeviceBlockInactive, DeviceBlockProvisioning
class DeviceType(strEnum):
......
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