|
1 | 1 | package domain |
2 | 2 |
|
3 | 3 | const ( |
4 | | - // LibDirName is the standard name of the directory containing the domain's lib directory. |
| 4 | + // LibDirName is the name of the directory containing the domain's lib directory. |
5 | 5 | LibDirName = "lib" |
6 | | - // InternalDirName is the standard name of the directory containing the domain's internal directory. |
| 6 | + |
| 7 | + // InternalDirName is the name of the directory containing the domain's internal directory. |
7 | 8 | InternalDirName = "internal" |
8 | | - // CmdDirName is the standard name of the directory containing the domain's cmd directory. |
| 9 | + |
| 10 | + // CmdDirName is the name of the directory containing the domain's cmd directory. |
9 | 11 | CmdDirName = "cmd" |
10 | | - // AddressBookFileName is the standard name of the file containing the address book. |
| 12 | + |
| 13 | + // AddressBookFileName is the name of the file containing the address book. |
11 | 14 | AddressBookFileName = "addresses.json" |
12 | | - // ArchivedProposalsDirName is the standard name of the directory containing archived proposals. |
| 15 | + |
| 16 | + // ArchivedProposalsDirName is the name of the directory containing archived proposals. |
13 | 17 | ArchivedProposalsDirName = "archived_proposals" |
14 | | - // ArtifactsDirName is the standard name of the directory containing migration artifacts. |
| 18 | + |
| 19 | + // ArtifactsDirName is the name of the directory containing migration artifacts. |
15 | 20 | ArtifactsDirName = "artifacts" |
16 | | - // DarastoreDirName is the standard name of the directory containing the datastore files. |
| 21 | + |
| 22 | + // DarastoreDirName is the name of the directory containing the datastore files. |
17 | 23 | DatastoreDirName = "datastore" |
18 | | - // DataStoreFileName is the standard name of the file containing the datastore. |
| 24 | + |
| 25 | + // DataStoreFileName is the name of the file containing the datastore. |
19 | 26 | DataStoreFileName = "datastore.json" |
20 | | - // AddressRefsFileName is the standard name of the file containing the address refs. |
| 27 | + |
| 28 | + // AddressRefsFileName is the name of the file containing the address refs. |
21 | 29 | AddressRefsFileName = "address_refs.json" |
22 | | - // ChainMetadataFileName is the standard name of the file containing the chain metadata. |
| 30 | + |
| 31 | + // ChainMetadataFileName is the name of the file containing the chain metadata. |
23 | 32 | ChainMetadataFileName = "chain_metadata.json" |
24 | | - // ContractMetadataFileName is the standard name of the file containing the contract metadata. |
| 33 | + |
| 34 | + // ContractMetadataFileName is the name of the file containing the contract metadata. |
25 | 35 | ContractMetadataFileName = "contract_metadata.json" |
26 | | - // EnvMetadataFileName is the standard name of the file containing the environment metadata. |
| 36 | + |
| 37 | + // DomainConfigDirName is the name of the directory containing the domain's config directory. |
| 38 | + DomainConfigDirName = ".config" |
| 39 | + |
| 40 | + // DomainConfigLocalDirName is the name of the directory containing the local domain config. |
| 41 | + DomainConfigLocalDirName = "local" |
| 42 | + |
| 43 | + // DomainConfigLocalFileName is the name of the file containing the local domain config. |
| 44 | + DomainConfigLocalFileName = "config.yml" |
| 45 | + |
| 46 | + // DomainConfigNetworksDirName is the name of the directory containing the domain networks config. |
| 47 | + DomainConfigNetworksDirName = "networks" |
| 48 | + |
| 49 | + // DomainConfigCIDirName is the name of the directory containing the domain CI config. |
| 50 | + DomainConfigCIDirName = "ci" |
| 51 | + |
| 52 | + // EnvMetadataFileName is the name of the file containing the environment metadata. |
27 | 53 | EnvMetadataFileName = "env_metadata.json" |
28 | | - // NodesFileName is the standard name of the file containing node information in the |
| 54 | + |
| 55 | + // NodesFileName is the name of the file containing node information in the |
29 | 56 | // environment directory. |
30 | 57 | NodesFileName = "nodes.json" |
31 | | - // ProposalsDirName is the standard name of the directory containing proposals. |
| 58 | + |
| 59 | + // ProposalsDirName is the name of the directory containing proposals. |
32 | 60 | ProposalsDirName = "proposals" |
33 | | - // DecodedProposalsDirName is the standard name of the directory containing decoded proposals. |
| 61 | + |
| 62 | + // DecodedProposalsDirName is the name of the directory containing decoded proposals. |
34 | 63 | DecodedProposalsDirName = "decoded_proposals" |
35 | | - // DurablePipelinesFileName is the standard name of the file containing the durable pipelines for |
| 64 | + |
| 65 | + // DurablePipelinesFileName is the name of the file containing the durable pipelines for |
36 | 66 | // the environment. |
37 | 67 | DurablePipelinesFileName = "durable_pipelines.go" |
38 | | - // OperationsReportsDirName is the standard name of the directory containing operations reports.[ |
| 68 | + |
| 69 | + // OperationsReportsDirName is the name of the directory containing operations reports.[ |
39 | 70 | OperationsReportsDirName = "operations_reports" |
40 | | - // ViewStateFileName is the standard name of the file containing the view state of the |
| 71 | + |
| 72 | + // ViewStateFileName is the name of the file containing the view state of the |
41 | 73 | // environment. |
42 | 74 | ViewStateFileName = "state.json" |
43 | | - // MigrationsFileName is the standard name of the file containing the migrations for the |
| 75 | + |
| 76 | + // MigrationsFileName is the name of the file containing the migrations for the |
44 | 77 | // environment. |
45 | 78 | MigrationsFileName = "migrations.go" |
46 | | - // MigrationsArchiveFileName is the standard name of the file containing the archived |
| 79 | + |
| 80 | + // MigrationsArchiveFileName is the name of the file containing the archived |
47 | 81 | // migrations for the environment. |
48 | 82 | MigrationsArchiveFileName = "migrations_archive.go" |
49 | | - // DurablePipelineDirName is the standard name of the directory containing durable pipelines. |
| 83 | + |
| 84 | + // DurablePipelineDirName is the name of the directory containing durable pipelines. |
50 | 85 | DurablePipelineDirName = "durable_pipelines" |
51 | | - // DurablePipelineInputsDirName is the standard name of the directory containing the inputs |
| 86 | + |
| 87 | + // DurablePipelineInputsDirName is the name of the directory containing the inputs |
52 | 88 | // for the durable pipelines. |
53 | 89 | DurablePipelineInputsDirName = "inputs" |
54 | 90 | ) |
0 commit comments