Skip to content
This repository was archived by the owner on Jan 1, 2021. It is now read-only.

Commit e243f22

Browse files
authored
Merge pull request #1 from Radarr/develop
Rewrite of whole api in laravel.
2 parents ab58c1b + c74f0b7 commit e243f22

166 files changed

Lines changed: 16967 additions & 166542 deletions

File tree

Some content is hidden

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

.DS_Store

6 KB
Binary file not shown.

.env.example

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
APP_NAME=Laravel
2+
APP_ENV=local
3+
APP_KEY=
4+
APP_DEBUG=true
5+
APP_LOG_LEVEL=debug
6+
APP_URL=http://localhost
7+
8+
DB_CONNECTION=mysql
9+
DB_HOST=127.0.0.1
10+
DB_PORT=3306
11+
DB_DATABASE=homestead
12+
DB_USERNAME=homestead
13+
DB_PASSWORD=secret
14+
15+
BROADCAST_DRIVER=log
16+
CACHE_DRIVER=file
17+
SESSION_DRIVER=file
18+
QUEUE_DRIVER=sync
19+
20+
REDIS_HOST=127.0.0.1
21+
REDIS_PASSWORD=null
22+
REDIS_PORT=6379
23+
24+
MAIL_DRIVER=smtp
25+
MAIL_HOST=smtp.mailtrap.io
26+
MAIL_PORT=2525
27+
MAIL_USERNAME=null
28+
MAIL_PASSWORD=null
29+
MAIL_ENCRYPTION=null
30+
31+
PUSHER_APP_ID=
32+
PUSHER_APP_KEY=
33+
PUSHER_APP_SECRET=

.gitattributes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
* text=auto
2+
*.css linguist-vendored
3+
*.scss linguist-vendored
4+
*.js linguist-vendored
5+
CHANGELOG.md export-ignore

.gitignore

Lines changed: 29 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,30 @@
1-
TMDBDUMP/*
2-
TMDBDUMP/**
3-
peewee/*
4-
peewee/**
1+
TMDBDUMP/*
2+
TMDBDUMP/**
3+
peewee/*
4+
peewee/**
55
IMDBAPI.py
6-
ini.json
7-
**/IMDBAPI.py
8-
*.log
9-
*.pyc
6+
ini.json
7+
**/IMDBAPI.py
8+
*.log
9+
*.pyc
10+
/node_modules
11+
/public/hot
12+
/public/storage
13+
/storage/*.key
14+
/vendor
15+
/.idea
16+
/.vagrant
17+
Homestead.json
18+
Homestead.yaml
19+
npm-debug.log
20+
.env
21+
22+
TMDBDUMP/*
23+
TMDBDUMP/**
24+
peewee/*
25+
peewee/**
26+
IMDBAPI.py
27+
ini.json
28+
**/IMDBAPI.py
29+
*.log
30+
*.pyc

.htaccess

Lines changed: 0 additions & 4 deletions
This file was deleted.

LICENSE

Lines changed: 0 additions & 674 deletions
This file was deleted.

README.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

TMDB2SQL.py

Lines changed: 0 additions & 221 deletions
This file was deleted.

0 commit comments

Comments
 (0)