Skip to content

Commit 5ee8ac5

Browse files
committed
Initial commit
0 parents  commit 5ee8ac5

19 files changed

Lines changed: 4508 additions & 0 deletions

.dockerignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
npm-debug.log

.env

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Project name
2+
COMPOSE_PROJECT_NAME=fiware
3+
4+
# Orion variables
5+
ORION_LD_PORT=1026
6+
ORION_LD_VERSION=1.0.0
7+
8+
# Scorpio variables
9+
SCORPIO_PORT=9090
10+
SCORPIO_VERSION=1.1.0
11+
12+
# Stellio variables
13+
STELLIO_DOCKER_TAG=latest
14+
STELLIO_PORT=8080
15+
16+
# MongoDB variables
17+
MONGO_DB_PORT=27017
18+
MONGO_DB_VERSION=4.4
19+
20+
# IoT Agent Ultralight Variables
21+
ULTRALIGHT_VERSION=1.20.0-distroless
22+
IOTA_NORTH_PORT=4041
23+
IOTA_SOUTH_PORT=7896
24+
25+
# Tutorial variables
26+
TUTORIAL_APP_PORT=3000
27+
TUTORIAL_DUMMY_DEVICE_PORT=3001
28+
29+
PIG_COUNT=20
30+
COW_COUNT=20

.github/workflows/ci.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
name: "CI"
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- NGSI-v2
8+
- NGSI-LD
9+
pull_request:
10+
branches:
11+
- master
12+
- NGSI-v2
13+
- NGSI-LD
14+
workflow_dispatch:
15+
16+
jobs:
17+
test-modules:
18+
name: Test Script
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: actions/checkout@master
22+
with:
23+
persist-credentials: false
24+
fetch-depth: 0
25+
submodules: recursive
26+
- name: Build Images
27+
run: |
28+
./services create test || true
29+
- name: Run Script
30+
run: |
31+
./services start test && ./services stop test

.gitignore

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
*~
2+
.fuse_hidden*
3+
.directory
4+
.Trash-*
5+
.nfs*
6+
*.DS_Store
7+
.AppleDouble
8+
.LSOverride
9+
Icon
10+
._*
11+
.DocumentRevisions-V100
12+
.fseventsd
13+
.Spotlight-V100
14+
.TemporaryItems
15+
.Trashes
16+
.VolumeIcon.icns
17+
.com.apple.timemachine.donotpresent
18+
.AppleDB
19+
.AppleDesktop
20+
Network Trash Folder
21+
Temporary Items
22+
.apdisk
23+
logs
24+
*.log
25+
npm-debug.log*
26+
yarn-debug.log*
27+
yarn-error.log*
28+
pids
29+
*.pid
30+
*.seed
31+
*.pid.lock
32+
node_modules/
33+
jspm_packages/
34+
.npm
35+
.eslintcache
36+
*.tgz
37+
.next

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018-2020 FIWARE Foundation e.V.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

NGSI-LD Concise Format.postman_collection.json

Lines changed: 932 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)