diff --git a/component-config.json b/component-config.json deleted file mode 100644 index f36959a48..000000000 --- a/component-config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "loopback-component-explorer": { - "mountPath": "/explorer" - } -} diff --git a/services/production/client/README.md b/services/production/client/README.md deleted file mode 100644 index dd00c9e9c..000000000 --- a/services/production/client/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Client - -This is the place for your application front-end files. diff --git a/services/production/common/models/Ticket.json b/services/production/common/models/Ticket.json deleted file mode 100644 index fd2c5b9c1..000000000 --- a/services/production/common/models/Ticket.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "Ticket", - "base": "MyModel", - "validateUpsert": true, - "properties": { - "id": { - "id": true, - "type": "Number", - "forceId": false - }, - "date": { - "type": "date" - } - }, - "acls": [ - { - "accessType": "*", - "principalType": "ROLE", - "principalId": "$everyone", - "permission": "DENY" - }, - { - "accessType": "*", - "principalType": "ROLE", - "principalId": "root", - "permission": "ALLOW" - } - ] -}