Skip to content

Commit

Permalink
Merge pull request #69 from stefanzweifel/development
Browse files Browse the repository at this point in the history
Laravel 5.3 / Rewrite and modularization
  • Loading branch information
stefanzweifel committed Feb 4, 2017
2 parents bb5f88c + 47dd7ab commit 84ee332
Show file tree
Hide file tree
Showing 325 changed files with 9,642 additions and 8,841 deletions.
29 changes: 0 additions & 29 deletions .codeclimate.yml

This file was deleted.

53 changes: 30 additions & 23 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,33 +1,40 @@
GITHUB_CLIENT_ID=_CLIENT_ID
GITHUB_SECRET=SUPER_SECRET_TOKEN
GITHUB_REDIRECT_URL=REDIRECT_URL
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=http://localhost

DB_HOST=localhost
DB_DATABASE=screeenly
DB_CONNECTION=sqlite
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret

SLACK_CHANNEL=#general
SLACK_BOT=BOTNAME
SLACK_ICON=:ghost:
SLACK_ENDPOINT=https://hooks.slack.com/services/***/***/***

APP_ENV=local
APP_DEBUG=true
APP_KEY=RandomString
APP_URL=http://screeeenly.com

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=mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null

SCREEENLY_RATE_LIMIT=1000
SCREEENLY_RATE_LIMIT_TIME=60
SCREEENLY_STORAGE_PATH=images/generated/
SCREEENLY_PATH_TO_PHANTOMJS=/vendor/bin/phantomjs
PUSHER_APP_ID=
PUSHER_KEY=
PUSHER_SECRET=

BUGSNAG_API_KEY=SECRET
BUGSNAG_NOTIFY_RELEASE_STAGES=production
STORAGE_DISK=local

SCHEDULER_PING_URL=http://beats.envoyer.io/heartbeat/secret
GITHUB_CLIENT_ID=_CLIENT_ID
GITHUB_SECRET=SUPER_SECRET_TOKEN
GITHUB_REDIRECT_URL=REDIRECT_URL

TRACKING_ID=UA-XXXX-Y
BUGSNAG_API_KEY=your-api-key-here
33 changes: 0 additions & 33 deletions .env.travis

This file was deleted.

2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
* text=auto
*.css linguist-vendored
*.less linguist-vendored
*.scss linguist-vendored
16 changes: 6 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
/vendor
/node_modules
.env
/resources/vendor
/public/images/generated
/public/images/try
/bin
.DS_Store
Thumbs.db
storage/database.sqlite
/public/storage
/vendor
/build
/.idea
Homestead.json
Homestead.yaml
Homestead.json
.env
11 changes: 5 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
language: php

php:
- 5.6
- 7
- hhvm
- 7.1
- nightly

matrix:
allow_failures:
- php: hhvm
- php: nightly

sudo: false

before_script:
- cp .env.travis .env
- cp .env.example .env
- travis_retry composer self-update
- travis_retry composer install --prefer-source --no-interaction
- php artisan key:generate
- php artisan key:generate --force
- php artisan config:clear

script: phpunit --coverage-clover build/logs/clover.xml
script: phpunit

after_script:
- ./bin/test-reporter
45 changes: 0 additions & 45 deletions app/ApiLog.php

This file was deleted.

86 changes: 0 additions & 86 deletions app/Console/Commands/MigrateApiKeys.php

This file was deleted.

58 changes: 0 additions & 58 deletions app/Console/Commands/RemoveImagesCommand.php

This file was deleted.

Loading

0 comments on commit 84ee332

Please sign in to comment.