Compare commits

..

8 Commits

Author SHA1 Message Date
Ron
b041b4d555 Merge pull request #124 from fleetbase/dev-v0.1.9
Patches branding configuration and user/company creation timestamp issue
2023-09-15 12:39:48 +08:00
Ronald A. Richardson
b30c101bea Patches branding configuration and user/company creation timestamp issue 2023-09-15 12:33:30 +08:00
Ron
e932cdd9c6 Merge pull request #122 from fleetbase/dev-v0.1.8
v0.1.8
2023-09-14 20:23:59 +08:00
Ronald A. Richardson
a7ff7094b6 v0.1.8 2023-09-14 20:17:34 +08:00
Ron
8514203b88 Merge pull request #117 from ekini/feature/log_output
Add run task log output on deployment
2023-09-08 10:55:19 +08:00
Eugene Dementyev
17c7759a47 Add run task log output on deployment 2023-09-06 21:18:11 +12:00
Ron
690c9d7486 Merge pull request #114 from fleetbase/feature-driver-simulation-api
Add driver simulation API, critical bugfixes, and a few new features
2023-08-25 20:21:45 +08:00
Ronald A. Richardson
6deeb9fd0a Several critical patches and a few new features 2023-08-25 20:15:30 +08:00
18 changed files with 409 additions and 342 deletions

View File

@@ -72,7 +72,7 @@ jobs:
run: |-
set -eu
# run deploy.sh script before deployments
env "ECS_RUN.SERVICE=app" "ECS_RUN.LAUNCH_TYPE=FARGATE" ./ecs-tool run --image_tag '{container_name}-${{ env.VERSION }}' --cluster ${{ env.PROJECT }}-${{ env.STACK }} --task_definition ${{ env.PROJECT }}-${{ env.STACK }}-app --container_name app ./deploy.sh
env "ECS_RUN.SERVICE=app" "ECS_RUN.LAUNCH_TYPE=FARGATE" ./ecs-tool run -l "ecs-tool" --image_tag '{container_name}-${{ env.VERSION }}' --cluster ${{ env.PROJECT }}-${{ env.STACK }} --task_definition ${{ env.PROJECT }}-${{ env.STACK }}-app --container_name app ./deploy.sh
./ecs-tool deploy --image_tag '{container_name}-${{ env.VERSION }}' --cluster ${{ env.PROJECT }}-${{ env.STACK }} -s app -s scheduler -s events
build_frontend:

View File

@@ -6,9 +6,9 @@
"license": "MIT",
"require": {
"php": "^7.3|^8.0",
"fleetbase/core-api": "^1.2.4",
"fleetbase/fleetops-api": "^1.1.2",
"fleetbase/storefront-api": "^1.1.0",
"fleetbase/core-api": "^1.2.7",
"fleetbase/fleetops-api": "^1.1.5",
"fleetbase/storefront-api": "^1.1.2",
"fleetbase/pallet-api": "^0.0.1",
"fruitcake/laravel-cors": "^2.0",
"guzzlehttp/guzzle": "^7.0.1",
@@ -19,8 +19,7 @@
"maatwebsite/excel": "^3.1",
"phpoffice/phpspreadsheet": "^1.28",
"predis/predis": "^2.1",
"psr/http-factory-implementation": "*",
"textalk/websocket": "^1.6"
"psr/http-factory-implementation": "*"
},
"require-dev": {
"facade/ignition": "^2.5",

View File

@@ -9,9 +9,9 @@
"license": "MIT",
"require": {
"php": "^7.3|^8.0",
"fleetbase/core-api": "^1.2.4",
"fleetbase/fleetops-api": "^1.1.2",
"fleetbase/storefront-api": "^1.1.0",
"fleetbase/core-api": "^1.2.7",
"fleetbase/fleetops-api": "^1.1.5",
"fleetbase/storefront-api": "^1.1.2",
"fruitcake/laravel-cors": "^2.0",
"guzzlehttp/guzzle": "^7.0.1",
"laravel/framework": "^8.75",
@@ -21,8 +21,7 @@
"maatwebsite/excel": "^3.1",
"phpoffice/phpspreadsheet": "^1.28",
"predis/predis": "^2.1",
"psr/http-factory-implementation": "*",
"textalk/websocket": "^1.6"
"psr/http-factory-implementation": "*"
},
"require-dev": {
"facade/ignition": "^2.5",

697
api/composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -39,14 +39,6 @@ return [
'driver' => 'local',
'root' => storage_path('app/public'),
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
],
'uploads' => [
'driver' => 'local',
'root' => storage_path('app/uploads'),
'url' => env('APP_URL').'/uploads',
'visibility' => 'public',
],
's3' => [

View File

@@ -13,7 +13,7 @@ return [
|
*/
'default' => env('QUEUE_CONNECTION', 'sync'),
'default' => env('QUEUE_CONNECTION', 'redis'),
/*
|--------------------------------------------------------------------------

Submodule console updated: cf7d349530...b99cefdc6d