Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/quickapps/docs
QuickAppsCMS Official Documentation
https://github.com/quickapps/docs
Last synced: about 1 month ago
JSON representation
QuickAppsCMS Official Documentation
- Host: GitHub
- URL: https://github.com/quickapps/docs
- Owner: quickapps
- Created: 2012-05-02T21:45:29.000Z (over 12 years ago)
- Default Branch: 2.x
- Last Pushed: 2018-04-05T11:55:01.000Z (almost 7 years ago)
- Last Synced: 2023-08-15T06:05:12.097Z (over 1 year ago)
- Language: HTML
- Homepage: http://www.quickappscms.org/
- Size: 1.57 MB
- Stars: 7
- Watchers: 0
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.mdown
Awesome Lists containing this project
README
# QuickAppsCMS Official Documentation
===================================Welcome to the official QuickApps CMS documentation. This manual assumes that you have a
general understanding of PHP and a basic understanding of object-oriented programming
(OOP) and CakePHP framework.## Build the Documentation Manually
### Installing the needed Packages
- Make
- Python
- Sphinx 1.4.5
- PhpDomain for sphinx >= 0.2.0You can install dependencies using:
```bash
pip install -r requirements.txt
```**To run the pip command, python-pip package must be previously installed.**
### Building the Documentation
After installing the required packages, you can build the documentation using `make`.
```bash
# Create all the HTML docs. Including all the languages.
make html# Create just the English HTML docs.
make html-en# Create all the EPUB (e-book) docs.
make epub# Create just the English EPUB docs.
make epub-en
```This will generate all the documentation in an HTML form. Other output such as 'htmlhelp'
are not fully complete at this time.### Building PDF Book
Building the PDF is a non-trivial task.
1. Install LaTeX - This varies by distribution/OS so refer to your package manager.
You should install the full LaTeX package.
The basic one requires many additional packages to be installed with `tlmgr`
2. Run `make latex-en`
2. Run `make pdf-en`At this point the completed PDF should be in `_build/latex/en/QuickAppsCMSBook.pdf`
## Contributing
To contribute simply fork the [official repository](https://github.com/quickapps/docs).
Please make any totally new sections in a separate branch. This makes changes far easier
to integrate later on.