Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Laravel inertia #25

Open
wants to merge 39 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
ae78570
Inertia
hakanersu Jan 13, 2022
1b1066f
wip
hakanersu Jan 13, 2022
9c674a4
Series watch/unwatch functionality added
hakanersu Jan 22, 2022
2cc50d3
wip
hakanersu Jan 23, 2022
c5df603
Movie link updated
hakanersu Jan 24, 2022
65c8d4b
TMDB env key update
hakanersu Jan 24, 2022
fdae282
Search disabled
hakanersu Jan 24, 2022
30c0524
update
hakanersu Jan 24, 2022
e6c7ae1
wip
hakanersu Jan 24, 2022
c4ea2ad
wip
hakanersu Jan 24, 2022
c6d8844
wip
hakanersu Jan 24, 2022
91515a4
wip
hakanersu Jan 24, 2022
bb7d2ba
wip
hakanersu Jan 24, 2022
bd7306b
Bugfix on movie index
hakanersu Jan 25, 2022
206ae8d
Homepage updated
hakanersu Jan 25, 2022
138e135
wip
hakanersu Jan 25, 2022
bcc5c73
Homepage update
hakanersu Jan 25, 2022
7bad10d
Dashboard update with stats
hakanersu Jan 25, 2022
16f1cbb
Bugfix
hakanersu Jan 25, 2022
acb4b51
wip
hakanersu Jan 25, 2022
b133ad9
wip
hakanersu Jan 25, 2022
a87bb94
wip
hakanersu Jan 25, 2022
23af2f7
New watch structure
hakanersu Feb 25, 2022
41864da
Clean up
hakanersu Feb 25, 2022
4533409
More clean up
hakanersu Feb 25, 2022
11c4073
wip
hakanersu Feb 25, 2022
3dcaa90
More clean up
hakanersu Feb 25, 2022
523c25f
No need to login to browse
hakanersu Feb 26, 2022
6aa6c00
Home page update
hakanersu Feb 26, 2022
d889a45
update
hakanersu Feb 26, 2022
152ee7b
update
hakanersu Feb 26, 2022
ce54ae9
update
hakanersu Feb 26, 2022
86cd139
wip
hakanersu Feb 26, 2022
17cad9d
wip
hakanersu Feb 26, 2022
4d12aea
wip
hakanersu Feb 26, 2022
1a289a0
wip
hakanersu Feb 26, 2022
9b15985
wip
hakanersu Feb 26, 2022
4e96a4d
update
hakanersu Mar 19, 2022
f779c2f
Update
hakanersu Mar 19, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 0 additions & 27 deletions .cloud/docker/Dockerfile

This file was deleted.

65 changes: 0 additions & 65 deletions .cloud/docker/Dockerfile.prod

This file was deleted.

23 changes: 0 additions & 23 deletions .cloud/nginx/nginx.conf

This file was deleted.

3 changes: 0 additions & 3 deletions .cloud/php/local.ini

This file was deleted.

1 change: 0 additions & 1 deletion .cloud/scripts/entrypoint.sh

This file was deleted.

3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@ trim_trailing_whitespace = false

[*.{yml,yaml}]
indent_size = 2

[docker-compose.yml]
indent_size = 4
53 changes: 53 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
APP_NAME=iWatched
APP_ENV=local
APP_KEY=base64:32JmuXh2P5FpQf8FUzk02q2Uh03oQRCrSV4ZvAy/upM=
APP_DEBUG=true
APP_URL=http://localhost

LOG_CHANNEL=stack
LOG_DEPRECATIONS_CHANNEL=null
LOG_LEVEL=debug

DB_CONNECTION=pgsql
DB_HOST=127.0.0.1
DB_PORT=5432
DB_DATABASE=imdb_laravel
DB_USERNAME=hipcall
DB_PASSWORD=hipcall

BROADCAST_DRIVER=log
CACHE_DRIVER=redis
FILESYSTEM_DRIVER=local
QUEUE_CONNECTION=redis
SESSION_DRIVER=redis
SESSION_LIFETIME=120

MEMCACHED_HOST=127.0.0.1

REDIS_HOST=redis
REDIS_PASSWORD=null
REDIS_PORT=6379

MAIL_MAILER=smtp
MAIL_HOST=mailhog
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS=null
MAIL_FROM_NAME="${APP_NAME}"

AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=us-east-1
AWS_BUCKET=
AWS_USE_PATH_STYLE_ENDPOINT=false

PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=
PUSHER_APP_CLUSTER=mt1

MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
HORIZON_USER=hakanersu@gmail.com
37 changes: 17 additions & 20 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,32 @@ APP_DEBUG=true
APP_URL=http://localhost

LOG_CHANNEL=stack
LOG_DEPRECATIONS_CHANNEL=null
LOG_LEVEL=debug

DB_CONNECTION=pgsql
DB_HOST=pgsql
DB_PORT=5432
DB_DATABASE=imdb
DB_USERNAME=laravel
DB_PASSWORD=secret
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laravel
DB_USERNAME=root
DB_PASSWORD=

BROADCAST_DRIVER=log
CACHE_DRIVER=redis
QUEUE_CONNECTION=redis
SESSION_DRIVER=redis
CACHE_DRIVER=file
FILESYSTEM_DRIVER=local
QUEUE_CONNECTION=sync
SESSION_DRIVER=database
SESSION_LIFETIME=120

MEMCACHED_HOST=127.0.0.1

REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379

MAIL_MAILER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_HOST=mailhog
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
Expand All @@ -36,6 +41,7 @@ AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=us-east-1
AWS_BUCKET=
AWS_USE_PATH_STYLE_ENDPOINT=false

PUSHER_APP_ID=
PUSHER_APP_KEY=
Expand All @@ -44,12 +50,3 @@ PUSHER_APP_CLUSTER=mt1

MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"

TMDB_ACCOUNT_ID=
TMDB_V3_KEY=
TMDB_V4_KEY=
SCOUT_ELASTIC_HOST=127.0.0.1

PSQL_PORT=5439:5432
APP_PORT=8000:8000

49 changes: 0 additions & 49 deletions .eslintrc

This file was deleted.

11 changes: 7 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,16 @@
/public/storage
/storage/*.key
/vendor
.env
.env.backup
.phpunit.result.cache
docker-compose.override.yml
Homestead.json
Homestead.yaml
npm-debug.log
yarn-error.log
.idea
.vscode
pipeline_*
/.idea
/.vscode
/storage/app/public/posters/*
/storage/debugbar
deploy.php

3 changes: 2 additions & 1 deletion .styleci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
php:
preset: laravel
version: 8
disabled:
- unused_use
- no_unused_imports
finder:
not-name:
- index.php
Expand Down
Loading