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
717 B
Markdown
Raw 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
## Get Started
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
```
2021-07-23 10:10:54 -05:00
## OpenAPI Doc
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
```
### Using Swagger Editor
Copy the API output and paste it in the [Swagger Editor](https://editor.swagger.io/).