Skip to content

Commit 64d3186

Browse files
committed
Documentation link.
1 parent d73d9ff commit 64d3186

1 file changed

Lines changed: 2 additions & 64 deletions

File tree

README.md

Lines changed: 2 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -2,68 +2,6 @@
22

33
An Identity and Access Management (IAM) platform.
44

5-
## Getting Started
5+
# Documentation
66

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

Comments
 (0)