Skip to content

Commit

Permalink
Actual code
Browse files Browse the repository at this point in the history
  • Loading branch information
p3r7 committed Jun 24, 2019
1 parent efcd474 commit 5a5931f
Show file tree
Hide file tree
Showing 79 changed files with 16,871 additions and 1 deletion.
45 changes: 45 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
APP_NAME=grafana-simple-json-datasource-centreon
PP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=http://localhost

BROADCAST_DRIVER=log
CACHE_DRIVER=file
SESSION_DRIVER=file
QUEUE_DRIVER=sync

REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379

MAIL_DRIVER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null

PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=

CENTREON_REST_API_URL=http://localhost/api/index.php
CENTREON_INTERNAL_REST_API_URL=http://localhost/centreon/include/common/webServices/rest/index.php
CENTREON_REST_API_USERNAME=admin
CENTREON_REST_API_PASSWORD=centreon

DB_HOST_CENTREON_MODEL=localhost
DB_PORT_CENTREON_MODEL=3306
DB_DATABASE_CENTREON_MODEL=centreon
DB_USERNAME_CENTREON_MODEL=centreon
DB_PASSWORD_CENTREON_MODEL=centreon
DB_SOCKET_CENTREON_MODEL=

DB_HOST_CENTREON_STORAGE=localhost
DB_PORT_CENTREON_STORAGE=3306
DB_DATABASE_CENTREON_STORAGE=centreon_storage
DB_USERNAME_CENTREON_STORAGE=centreon
DB_PASSWORD_CENTREON_STORAGE=centreon
DB_SOCKET_CENTREON_STORAGE=
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
composer.lock
vendor/
node_modules/
npm-debug.log
Expand All @@ -12,9 +13,13 @@ public/hot
storage/*.key
.env.*.php
.env.php
.env
.env*
!.env.example
Homestead.yaml
Homestead.json

# Rocketeer PHP task runner and deployment package. https://github.com/rocketeers/rocketeer
.rocketeer/

# IntelliJ
.idea
Loading

0 comments on commit 5a5931f

Please sign in to comment.