Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amphp/amphp.github.io
Main website repository.
https://github.com/amphp/amphp.github.io
amphp documentation github-pages jekyll
Last synced: about 1 month ago
JSON representation
Main website repository.
- Host: GitHub
- URL: https://github.com/amphp/amphp.github.io
- Owner: amphp
- License: other
- Created: 2015-08-03T20:14:46.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-12-23T17:38:15.000Z (about 2 years ago)
- Last Synced: 2024-07-30T16:53:33.284Z (5 months ago)
- Topics: amphp, documentation, github-pages, jekyll
- Language: HTML
- Homepage: https://amphp.org
- Size: 1.7 MB
- Stars: 24
- Watchers: 9
- Forks: 27
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
This repository contains shared files for all documentation pages as well as the main website.
## Setup for a new repository
```bash
git submodule add https://github.com/amphp/amphp.github.io docs/.shared
# copy .gitignore, _config.yml and Gemfile from another repository
# adjust navigation and paths in _config.yml
cd docs
ln -s .shared/asset asset
bundle install --path vendor/bundle
bundle exec jekyll serve
```## Setup for an existing repository
```bash
cd docs
git submodule init
git submodule update
bundle install --path vendor/bundle
bundle exec jekyll serve
```