Skip to content

Commit

Permalink
Initial Revision
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-fox committed Apr 30, 2018
0 parents commit c604f56
Show file tree
Hide file tree
Showing 37 changed files with 5,366 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .dockerignore
@@ -0,0 +1,2 @@
node_modules
npm-debug.log
40 changes: 40 additions & 0 deletions .gitignore
@@ -0,0 +1,40 @@
docker-compose.yml

*~
.fuse_hidden*
.directory
.Trash-*
.nfs*
*.DS_Store
.AppleDouble
.LSOverride
Icon
._*
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pids
*.pid
*.seed
*.pid.lock
node_modules/
jspm_packages/
.npm
.eslintcache
*.tgz
.env
.next
21 changes: 21 additions & 0 deletions LICENSE
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2018 FIWARE Foundation e.V.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
495 changes: 495 additions & 0 deletions README.md

Large diffs are not rendered by default.

47 changes: 47 additions & 0 deletions docker-compose.yml
@@ -0,0 +1,47 @@
version: "3"
services:
context-db:
image: mongo:3.6
hostname: context-db
container_name: context-db
expose:
- "27017"
ports:
- "27017:27017"
networks:
- default
command: --bind_ip_all --smallfiles

orion:
image: fiware/orion:latest
hostname: orion
container_name: orion
depends_on:
- context-db
- context-provider
networks:
- default
expose:
- "1026"
ports:
- "1026:1026"
command: -dbhost context-db -logLevel DEBUG

context-provider:
image: fiware/cp-web-app:latest
hostname: context-provider
container_name: context-provider
networks:
- default
expose:
- "3000"
ports:
- "3000:3000"
environment:
- "DEBUG=proxy:*"
- "WUNDERGROUND_KEY_ID=<ADD_YOUR_KEY_ID>"
- "TWITTER_CONSUMER_KEY=<ADD_YOUR_CONSUMER_KEY>"
- "TWITTER_CONSUMER_SECRET=<ADD_YOUR_CONSUMER_SECRET>"

networks:
default:

0 comments on commit c604f56

Please sign in to comment.