All docs
This doc
...
After the project is initialized, you will notice that a directory based on the name of the MGW project (e.g., petstore) has been created within the directory where you executed the init
command. The folder structure is similar to the following.
Code Block |
---|
petstore [project_name] ├── api_definitions ├── conf │ └── deployment-config.toml ├── extensions │ ├── extension_filter.bal │ ├── startup_extension.bal │ └── token_revocation_extension.bal ├── interceptors ├── policies.yaml ├── services │ ├── authorize_endpoint.bal │ ├── revoke_endpoint.bal │ ├── token_endpoint.bal │ └── user_info_endpoint.bal └── target └── gen |
...