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: doc/getting-started.md
+25-16
Original file line number
Diff line number
Diff line change
@@ -1,22 +1,31 @@
1
-
## Getting started with DOCAT
1
+
## Getting Started with DOCAT
2
2
3
-
### docatl, the docat CLI 🙀
4
3
5
-
The most convenient way to interact with docat is with it's official CLI tool, [docatl](https://github.com/docat-org/docatl).
6
4
7
-
You can download a standalone binary of the latest release for your platform [here](https://github.com/docat-org/docatl/releases/latest) or [use go](https://github.com/docat-org/docatl#using-go) or [docker](https://github.com/docat-org/docatl#using-docker) to install it.
8
5
9
-
The commands below contain examples both using `curl` and `docatl`. Do note that the host address and api-key can be omitted if specified in a `.docatl.yml` file. See the [docatl documentation](https://github.com/docat-org/docatl/blob/main/README.md) for more information.
6
+
### Using `docatl`, the docat CLI 🙀
7
+
8
+
The most convenient way to interact with docat is with it's official CLI tool,
9
+
[docatl](https://github.com/docat-org/docatl).
10
+
11
+
You can download a standalone binary of the latest release for your platform
12
+
[here](https://github.com/docat-org/docatl/releases/latest) or
13
+
[use go](https://github.com/docat-org/docatl#using-go) or
14
+
[docker](https://github.com/docat-org/docatl#using-docker) to install it.
15
+
16
+
The commands below contain examples both using `curl` and `docatl`.
17
+
Do note that the host address and api-key can be omitted if specified in a `.docatl.yml` file.
18
+
See the [docatl documentation](https://github.com/docat-org/docatl/blob/main/README.md) for more information.
10
19
11
20
Use `docatl --help` to discover all commands available to manage your `docat` documentation!
12
21
13
-
### Raw API endpoints
22
+
### API endpoints
14
23
15
24
The following sections document the RAW API endpoints you can `curl`.
16
25
17
-
The API specification is exposed as an OpenAPI Documentation at http://localhost:8000/api/v1/openapi.json,
18
-
via Swagger UI at http://localhost:8000/api/docs and
19
-
as a pure documentation with redoc at http://localhost:8000/api/redoc.
26
+
The API specification is exposed as an [OpenAPI Documentation](/api/v1/openapi.json),
27
+
via Swagger UI at [/api/docs](/api/docs) and
28
+
as a pure documentation with redoc at [/api/redoc](/api/redoc).
20
29
21
30
#### Upload your documentation
22
31
@@ -31,7 +40,7 @@ For example to upload the file `docs.zip` as version `1.0.0` for `awesome-projec
31
40
curl -X POST -F "[email protected]" http://localhost:8000/api/awesome-project/1.0.0
0 commit comments