# Generating Documentation To generate your API documentation, use the `scribe:generate` artisan command. ```sh php artisan scribe:generate ``` This will: - extract information about your API and endpoints - generate documentation about them as a series of Markdown files - pass these Markdown files to [Pastel](https://github.com/knuckleswtf/pastel), which wraps the Markdown files in a HTML, CSS and JavaScript template. ## Viewing the generated docs Accessing your generated docs depends on the `type` you specified in `scribe.php`: - If you're using `static` type, find the `docs/index.html` file in your `public/` folder and open that in your browser. - If you're using `laravel` type, start your app (`php artisan serve`), then visit `/docs`. ## Configuring interactive documentation When `interactive` is set to `true` (which is also the default value) in your config, Scribe will add a "Try It Out" button to your endpoints so users can test them from their browser. For this to work, though, you'll need to make sure CORS is enabled. An easy package for this is [`fruitcake/laravel-cors`](https://github.com/fruitcake/laravel-cors). ## Postman collection generation By default, a Postman collection file which you can import into API clients like Postman or Insomnia is generated alongside your docs. You can view it by visiting `public/docs/collection.json` for `static` type, and `/docs.json` for `laravel` type. This link will also be added to the sidebar of your docs. You can configure Postman collection generation in the `postman` section of your `scribe.php` file. - To turn it off, set the `postman.enabled` config option to false. - To override fields in the generated collection, set the `postman.overrides` config option to your changes. You can use dot notation to update specific nested fields. For instance, `['info.version' => '2.0.0']` will override the 'version` key in the 'info` object whenever generating. ## OpenAPI (Swagger) spec generation Scribe can also generate an OpenAPI spec file. This is disabled by default. You can configure this in the `openapi` section of your `scribe.php` file. - To enable it, set the `openapi.enabled` config option to `true`. - To override fields in the generated spec, set the `openapi.overrides` config option to your changes. You can use dot notation to update specific nested fields. For instance, `['info.version' => '2.0.0']` will override the 'version` key in the 'info` object whenever generating. You can view the generated spec by visiting `public/docs/openapi.yaml` for `static` type, and `/docs.openapi` for `laravel` type. This link will also be added to the sidebar of your docs. ## Customising the environment with `--env` You can pass the `--env` option to run this command in a specific env. For instance, if you have a `.env.test` file, running `scribe:generate --env test` will make Laravel use that file to populate the env for this command. This can be very useful to customise the behaviour of your app for documentation purposes and disable things like notifications when response calls are running. ## Skipping the extraction phase If you've modified the generated Markdown, and you only want Scribe to transform it to the normal HTML output, you can use the `--no-extraction` flag. Scribe will skip extracting data from your routes and go straight to the writing phase, where it converts your Markdown to HTML or Blade. See [Advanced Customization](customization.html). ## Overwriting your changes to the Markdown If you've modified the generated Markdown manually, but you'd like to discard your changes and re-generate based on the data Scribe extracts from your routes, you can pass the `--force` flag. ## Memory Limitations Generating docs for large APIs can be memory intensive. If you run into memory limits, consider running PHP with an increased memory limit (either by updating your CLI php.ini file or using a CLI flag): ```sh php -d memory_limit=1G artisan scribe:generate ``` ## Further customization Sometimes you need to modify the documentation after it has been generated. See [the guide on customization](customization.html) for help on doing that.