0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00
logto/packages/core/README.md

28 lines
727 B
Markdown
Raw Permalink Normal View History

2021-07-25 09:44:07 -05:00
# @logto/core
2021-06-06 05:30:37 -05:00
2021-07-25 09:44:07 -05:00
The core backend service.
2021-06-06 05:30:37 -05:00
2023-10-25 01:01:49 -05:00
## Get started
2021-06-06 05:30:37 -05:00
2021-07-09 10:27:46 -05:00
Copy proper `.env` to project root. (TBD: design the config process)
2021-06-29 10:04:20 -05:00
2021-06-06 05:30:37 -05:00
```bash
2021-07-29 04:46:28 -05:00
pnpm i && pnpm dev
2021-06-06 05:30:37 -05:00
```
2023-10-25 01:01:49 -05:00
## OpenAPI documentation
2021-06-06 05:30:37 -05:00
2021-07-23 10:10:54 -05: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 01:01:49 -05:00
### Using Swagger editor
2021-07-23 10:10:54 -05:00
Copy the API output and paste it in the [Swagger Editor](https://editor.swagger.io/).