{"id":20779282,"url":"https://github.com/bolt/docs-site","last_synced_at":"2026-05-27T12:32:38.918Z","repository":{"id":146895705,"uuid":"435950634","full_name":"bolt/docs-site","owner":"bolt","description":null,"archived":false,"fork":false,"pushed_at":"2022-07-06T11:25:25.000Z","size":25695,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"site","last_synced_at":"2025-12-19T21:53:03.361Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bolt.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-12-07T16:23:49.000Z","updated_at":"2025-08-24T07:02:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"1c98fe7c-6df9-49cd-a074-5ca5191c24f5","html_url":"https://github.com/bolt/docs-site","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bolt/docs-site","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bolt%2Fdocs-site","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bolt%2Fdocs-site/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bolt%2Fdocs-site/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bolt%2Fdocs-site/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bolt","download_url":"https://codeload.github.com/bolt/docs-site/tar.gz/refs/heads/site","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bolt%2Fdocs-site/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33566872,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-27T02:00:06.184Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-17T13:27:05.667Z","updated_at":"2026-05-27T12:32:38.895Z","avatar_url":"https://github.com/bolt.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"Bolt Documentation Site \u0026 Content\n=================================\n\nThis repository is the first part (base) for the site of [Bolt][bolt], and should \nbe considered a counterpart of the [Bolt Core repository][repo].\n\nThe second part (content) can be found [here](https://github.com/bolt/docs)\n\nThe documentation uses the [Markdown][markdown] format.\n\nThere is no need to build anything to generate HTML. We parse the markdown with\nPHP.\n\nUpdating Documentation\n----------------------\n\nThe repository uses branches to group documentation relevant to each version in\nthe format of `\u003cmajor.minor\u003e`, e.g. `3.0`.\n\nChanges should be PR-ed against the *lowest* relevant version and will then be\nmerged down into higher version branches as required.\n\ne.g. if you're fixing a typo that exists in the same Markdown file in both \nversion 3.0 as well as in 3.1, you would checkout `3.0` and submit your PR \nagainst that branch.\n\nLocal site set-up\n-----------------\n\nTo run the site locally you need to complete the following steps:\n\n  * Create the repository with `git clone`\n  * A second 'git clone' to install the content\n  * Run `composer install` to install required vendor libraries\n\n### Site Set-up\n\n```\ngit clone git@github.com:bolt/docs-site.git bolt-docs\ncd var/versions\ngit clone git@github.com:bolt/docs.git 5.0\ncomposer install\n```\n\n### Set-up older versions\n\nIf you want to set-up older versions, e.g. 4.0, complete the following steps:\n\n```\ncd var/versions\ngit clone git@github.com:bolt/docs.git 4.0\n```\n\nThen, on your local site you are able to choose version 4.0 at the dropdown menu on the upper right side.\n\n### Configure Default Version\n\nFor your local environment you can edit the `.env` file, located in the project\nroot. It should contain the following:\n\n```\nDEFAULT_VERSION=4.0\nAPP_ENV=dev\n```\n\n### Web Server Set-up\n\nFinally if you wish to use the built-in PHP web server, it can be run from the\n`bolt-docs/` folder, pointing to `public/` as the document root.\n\n```\nphp -S 127.0.0.1:8000 -t public public/index.php\n```\n\nYou can also use the Symfony web server bundle. You will need to start by\npreparing the project:\n\n```\ngit stash\ncomposer require server --dev\ngit reset --hard HEAD\nrm config/routes/annotations.yaml -f\ngit stash pop\n```\n\nThen starting the web server:\n```\nbin/console server:start\n```\n\nAlternatively, configure your preferred web server to point at the `public/`\nfolder.\n\nTo see the documentation site go to `example.localhost/3.5/`, from where you'll\nget redirected to the front page of the documentation.\n\n## Building front-end assets\n\nFirst, install the `npm` dependencies: \n\n```bash\nnpm install\n```\n\nThen, build the assets: \n\n```bash\nnpm run build \n```\n\n[bolt]: http://docs.bolt.cm/\n[markdown]: http://daringfireball.net/projects/markdown/\n[repo]: https://github.com/bolt/core\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbolt%2Fdocs-site","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbolt%2Fdocs-site","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbolt%2Fdocs-site/lists"}