0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-13 21:30:30 -05:00
logto/packages/core/README.md

28 lines
727 B
Markdown
Raw Permalink Normal View History

2021-07-25 22:44:07 +08:00
# @logto/core
2021-06-06 18:30:37 +08:00
2021-07-25 22:44:07 +08:00
The core backend service.
2021-06-06 18:30:37 +08:00
2023-10-25 14:01:49 +08:00
## Get started
2021-06-06 18:30:37 +08:00
2021-07-09 23:27:46 +08:00
Copy proper `.env` to project root. (TBD: design the config process)
2021-06-29 23:04:20 +08:00
2021-06-06 18:30:37 +08:00
```bash
2021-07-29 17:46:28 +08:00
pnpm i && pnpm dev
2021-06-06 18:30:37 +08:00
```
2023-10-25 14:01:49 +08:00
## OpenAPI documentation
2021-06-06 18:30:37 +08:00
2021-07-23 23:10:54 +08:00
OpenAPI (Swagger) json is available on `http(s)://your-domain/api/swagger.json`. If you are running locally, the default URL will be `http://localhost:3001/api/swagger.json`. Consume it in the way you like.
### Using ReDoc
The doc website can be served by [redoc-cli](https://github.com/Redocly/redoc/blob/master/cli/README.md) in an extremely easy way:
```bash
npx redoc-cli serve http://localhost:3001/api/swagger.json
```
2023-10-25 14:01:49 +08:00
### Using Swagger editor
2021-07-23 23:10:54 +08:00
Copy the API output and paste it in the [Swagger Editor](https://editor.swagger.io/).