Skip to content

Commit e4e795b

Browse files
committed
Initial commit.
0 parents  commit e4e795b

File tree

278 files changed

+20263
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

278 files changed

+20263
-0
lines changed

.env.example

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
APP_ENV=local
2+
APP_DEBUG=true
3+
APP_KEY=SomeRandomStringThatIsLongEnough
4+
APP_TIMEZONE="UTC"
5+
APP_URL="http://airflix.local"
6+
7+
AIRFLIX_EXTENSIONS_VIDEO=m4v
8+
TMDB_API_KEY=ApplyForAnApiKey
9+
10+
DB_HOST=localhost
11+
DB_DATABASE=airflix
12+
DB_USERNAME=homestead
13+
DB_PASSWORD=secret
14+
15+
CACHE_DRIVER=redis
16+
SESSION_DRIVER=redis
17+
QUEUE_DRIVER=redis
18+
19+
REDIS_HOST=localhost
20+
REDIS_PASSWORD=null
21+
REDIS_PORT=6379
22+
23+
MAIL_DRIVER=smtp
24+
MAIL_HOST=mailtrap.io
25+
MAIL_PORT=2525
26+
MAIL_USERNAME=null
27+
MAIL_PASSWORD=null
28+
MAIL_ENCRYPTION=null

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
* text=auto
2+
*.css linguist-vendored
3+
*.less linguist-vendored

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/vendor
2+
/node_modules
3+
Homestead.yaml
4+
Homestead.json
5+
.env
6+
/public/downloads/episodes
7+
/public/downloads/movies

.travis.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
language: php
2+
3+
php:
4+
- 5.6
5+
- 7.0
6+
7+
env:
8+
APP_ENV: testing
9+
APP_KEY: Tgm8GqW1Ldao5Q8maftoViYeKOWgrFE1
10+
CACHE_DRIVER: array
11+
SESSION_DRIVER: array
12+
QUEUE_DRIVER: sync
13+
DB_CONNECTION: sqlite
14+
15+
install:
16+
- travis_retry composer install --no-interaction --prefer-source
17+
18+
script:
19+
- vendor/bin/phpunit;

0 commit comments

Comments
 (0)