Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
wells committed Jul 25, 2016
0 parents commit e4e795b
Show file tree
Hide file tree
Showing 278 changed files with 20,263 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
APP_ENV=local
APP_DEBUG=true
APP_KEY=SomeRandomStringThatIsLongEnough
APP_TIMEZONE="UTC"
APP_URL="http://airflix.local"

AIRFLIX_EXTENSIONS_VIDEO=m4v
TMDB_API_KEY=ApplyForAnApiKey

DB_HOST=localhost
DB_DATABASE=airflix
DB_USERNAME=homestead
DB_PASSWORD=secret

CACHE_DRIVER=redis
SESSION_DRIVER=redis
QUEUE_DRIVER=redis

REDIS_HOST=localhost
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
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
* text=auto
*.css linguist-vendored
*.less linguist-vendored
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/vendor
/node_modules
Homestead.yaml
Homestead.json
.env
/public/downloads/episodes
/public/downloads/movies
19 changes: 19 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
language: php

php:
- 5.6
- 7.0

env:
APP_ENV: testing
APP_KEY: Tgm8GqW1Ldao5Q8maftoViYeKOWgrFE1
CACHE_DRIVER: array
SESSION_DRIVER: array
QUEUE_DRIVER: sync
DB_CONNECTION: sqlite

install:
- travis_retry composer install --no-interaction --prefer-source

script:
- vendor/bin/phpunit;
Loading

0 comments on commit e4e795b

Please sign in to comment.