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

Dev #197

Merged
merged 2 commits into from
Oct 8, 2023
Merged

Dev #197

Show file tree
Hide file tree
Changes from all commits
Commits
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
22 changes: 11 additions & 11 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ APP_NAME=IFDD
APP_ENV=production
APP_KEY=
APP_DEBUG=false
APP_URL=https://cartodd-api.francophonie.org
ASSET_URL=https://cartodd-api.francophonie.org
APP_URL=
ASSET_URL=

LOG_CHANNEL=stack
LOG_DEPRECATIONS_CHANNEL=null
Expand All @@ -29,14 +29,14 @@ REDIS_HOST=127.0.0.1
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}"
MAIL_MAILER=
MAIL_HOST=
MAIL_PORT=
MAIL_USERNAME=
MAIL_PASSWORD=
MAIL_ENCRYPTION=
MAIL_FROM_ADDRESS=
MAIL_FROM_NAME=

AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
Expand All @@ -53,7 +53,7 @@ MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"


APP_FRONTEND=https://cartodd.francophonie.org
APP_FRONTEND=

SCOUT_DRIVER=meilisearch
MEILISEARCH_HOST=http://ifdd-app-meilisearch:7700
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"laravel/sanctum": "^3.2",
"laravel/scout": "^9.4",
"laravel/tinker": "^2.5",
"meilisearch/meilisearch-php": "^0.23.3",
"meilisearch/meilisearch-php": "^1.3",
"mohammadhprp/filament-ip-to-country-flag-column": "^1.0",
"njxqlus/filament-progressbar": "^1.0",
"psr/simple-cache": "2.0",
Expand Down
98 changes: 50 additions & 48 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
*/

Route::get('/', function () {
return view('welcome');
return redirect('/admin');
});