You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-64Lines changed: 2 additions & 64 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,68 +2,6 @@
2
2
3
3
An Identity and Access Management (IAM) platform.
4
4
5
-
## Getting Started
5
+
#Documentation
6
6
7
-
The quickest way to get started is to install [Docker](https://www.docker.com/get-started/) and then create a `docker-compose.yml` file that contains the:
8
-
9
-
```
10
-
version: "3.9"
11
-
services:
12
-
azurite:
13
-
image: mcr.microsoft.com/azure-storage/azurite
14
-
hostname: azurite
15
-
database:
16
-
image: shuttle/access-sqlserver-linux:latest
17
-
hostname: database
18
-
server:
19
-
image:
20
-
shuttle/access-server
21
-
environment:
22
-
- CONFIGURATION_FOLDER=.
23
-
depends_on:
24
-
- "azurite"
25
-
- "database"
26
-
projection:
27
-
image:
28
-
shuttle/access-projection:latest
29
-
environment:
30
-
- CONFIGURATION_FOLDER=.
31
-
depends_on:
32
-
- "database"
33
-
web-api:
34
-
image:
35
-
shuttle/access-webapi:latest
36
-
environment:
37
-
- ASPNETCORE_URLS=http://*:5599
38
-
- CONFIGURATION_FOLDER=.
39
-
depends_on:
40
-
- "azurite"
41
-
- "server"
42
-
ports:
43
-
- "5599:5599"
44
-
front-end:
45
-
image:
46
-
shuttle/access-vue:latest
47
-
ports:
48
-
- "8080:80"
49
-
```
50
-
51
-
You will now be able to run `docker-compose up` in the folder containing the above file:
52
-
53
-
```
54
-
> docker-compose up
55
-
```
56
-
57
-
The various images will be downloaded and, once all the containers have started up, you can browse to:
58
-
59
-
```
60
-
http://locahost:8080
61
-
```
62
-
63
-
Which should bring you to the sign-in page where `admin` is the identity as well as the password.
64
-
65
-
To view the web-api endpoints you can browse to:
66
-
67
-
```
68
-
http://locahost:5599/swagger/index.html
69
-
```
7
+
Please visit the [Shuttle.Access documentation](https://www.pendel.co.za/shuttle-access/home.html) for more information.
0 commit comments