Compare commits

..

4 Commits

Author SHA1 Message Date
Ronald A. Richardson
435552f332 updated docker-compose.yml to set baseUrl for solid server 2023-12-06 13:51:45 +08:00
Ronald A. Richardson
e0615c5a9b api setup to link to solid extension 2023-12-05 18:09:37 +08:00
Ronald A. Richardson
a830e190fa getting started with solid protocol integration, setting up oidc client 2023-12-05 18:06:23 +08:00
Shiv Thakker
5c7e0a1c56 Update README.md 2023-11-28 15:08:12 +08:00
6 changed files with 985 additions and 129 deletions

3
.gitmodules vendored
View File

@@ -39,3 +39,6 @@
[submodule "docs/api-reference"]
path = docs/api-reference
url = git@github.com:fleetbase/api-reference.git
[submodule "packages/solid"]
path = packages/solid
url = git@github.com:fleetbase/solid.git

View File

@@ -10,6 +10,9 @@
<a href="https://fleetbase.github.io/guides" rel="nofollow">Fleetbase Documentation →</a>
<br>
<br>
<a href="https://meetings.hubspot.com/shiv-thakker" rel="nofollow">Book a Demo</a>
<br>
<br>
<a href="https://github.com/fleetbase/fleetbase/issues">Report an Issue</a>
·
<a href="https://fleetbase.github.io/api-reference">API Reference</a>

View File

@@ -12,6 +12,7 @@
"fleetbase/core-api": "^1.3.2",
"fleetbase/fleetops-api": "^0.3.5",
"fleetbase/storefront-api": "^0.2.4",
"fleetbase/solid-api": "^0.0.1",
"fruitcake/laravel-cors": "^2.0",
"guzzlehttp/guzzle": "^7.0.1",
"laravel/framework": "^8.75",
@@ -32,6 +33,12 @@
"nunomaduro/collision": "^5.10",
"phpunit/phpunit": "^9.5.10"
},
"repositories": [
{
"type": "path",
"url": "../packages/solid"
}
],
"autoload": {
"psr-4": {
"App\\": "app/",

1092
api/composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -15,6 +15,14 @@ services:
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
MYSQL_DATABASE: "fleetbase"
solid:
image: solidproject/community-server:7
command: ["--baseUrl", "http://solid:3000"]
ports:
- "3000:3000"
volumes:
- ./solid/data:/data
socket:
image: socketcluster/socketcluster:v17.4.0
ports:

1
packages/solid Submodule

Submodule packages/solid added at dc2ee3a0ec