Skip to content

Commit

Permalink
Merge pull request #6 from egoisticalgoat/develop
Browse files Browse the repository at this point in the history
Release 1.6
  • Loading branch information
SunflowerFuchs authored Mar 15, 2019
2 parents 8cd64cc + eb2c646 commit f4a341b
Show file tree
Hide file tree
Showing 12 changed files with 695 additions and 506 deletions.
29 changes: 1 addition & 28 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,36 +1,9 @@
APP_NAME=Laravel
APP_NAME=trntbl-clone
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=http://localhost

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret

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=

TUMBLR_API_KEY=
TUMBLR_SECRET_KEY=
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
trntbl-clone
======
**trntbl-clone** is a web-app to fetch your tumblr blog as a playlist.
It's currently hosted on [egoisticalgoat.de](https://egoisticalgoat.de)

## Installation
If you want to host this project yourself, you can easily do that.

1. Clone this repo
```
git clone [email protected]:egoisticalgoat/trntbl-clone.git
```
2. Run composer install
```
composer install
```
3. Copy the .env.example to .env and fill it in with the tumblr api key (available [here](http://www.tumblr.com/oauth/apps)) and the other data
4. Use it like [any other laravel app](https://laravel.com/docs/5.8/installation)


## Contact
* Homepage: [egoisticalgoat.de](https://egoisticalgoat.de)
* e-mail: [[email protected]](mailto:[email protected])
4 changes: 2 additions & 2 deletions app/Http/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ class Kernel extends HttpKernel
'web' => [
\App\Http\Middleware\EncryptCookies::class,
\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
\Illuminate\Session\Middleware\StartSession::class,
// \Illuminate\Session\Middleware\StartSession::class,
// \Illuminate\Session\Middleware\AuthenticateSession::class,
\Illuminate\View\Middleware\ShareErrorsFromSession::class,
// \Illuminate\View\Middleware\ShareErrorsFromSession::class,
//\App\Http\Middleware\VerifyCsrfToken::class,
\Illuminate\Routing\Middleware\SubstituteBindings::class,
],
Expand Down
Loading

0 comments on commit f4a341b

Please sign in to comment.