All Projects → shopware → Devdocs

shopware / Devdocs

Shopware 5 Developers Website

Projects that are alternatives of or similar to Devdocs

Elm Doc Preview
Elm offline documentation previewer
Stars: ✭ 113 (-5.83%)
Mutual labels:  documentation
Component Docs
📝 Simple documentation for your React components
Stars: ✭ 116 (-3.33%)
Mutual labels:  documentation
Docs
API Platform documentation
Stars: ✭ 119 (-0.83%)
Mutual labels:  documentation
Guide
Screwdriver.cd Documentation
Stars: ✭ 113 (-5.83%)
Mutual labels:  documentation
Pico8 Api
Unofficial PICO-8 API with a lovely design ! ::
Stars: ✭ 115 (-4.17%)
Mutual labels:  documentation
Overview
🎈 Start here for current projects, how to get involved, and joining community calls, a resource for new and veteran members
Stars: ✭ 117 (-2.5%)
Mutual labels:  documentation
Python Altium
Altium schematic format documentation, SVG converter and TK viewer
Stars: ✭ 112 (-6.67%)
Mutual labels:  documentation
Frontend Develops Skill Summary
Development experience with javascript, jQuery, Vuejs, Wechat MiniProgram and so on
Stars: ✭ 120 (+0%)
Mutual labels:  documentation
Instapy Docker
🐳 Docker config and documentation for running InstaPy with Docker
Stars: ✭ 117 (-2.5%)
Mutual labels:  documentation
Wiki
Awesome way to learn together! 🤣
Stars: ✭ 119 (-0.83%)
Mutual labels:  documentation
Devportal
Steem Platform Developer Documentation.
Stars: ✭ 114 (-5%)
Mutual labels:  documentation
Git Playbook
GIT Playbook is a documentation framework that allows you to create Documentation for your project using Markdown and GH-Pages rapidly
Stars: ✭ 115 (-4.17%)
Mutual labels:  documentation
Wikiman
Wikiman is an offline search engine for manual pages, Arch Wiki, Gentoo Wiki and other documentation.
Stars: ✭ 117 (-2.5%)
Mutual labels:  documentation
Catalog
Create living style guides using Markdown or React
Stars: ✭ 1,527 (+1172.5%)
Mutual labels:  documentation
Lodash.com
The Lodash website.
Stars: ✭ 119 (-0.83%)
Mutual labels:  documentation
Terraform Docs As Pdf
Complete Terraform documentation (core + all official providers) as PDF files. Updating nightly.
Stars: ✭ 113 (-5.83%)
Mutual labels:  documentation
Ocamlverse.github.io
Documentation of everything relevant in the OCaml world
Stars: ✭ 117 (-2.5%)
Mutual labels:  documentation
Website
Code for the Outreachy website, based on Python, Django, and Bootstrap.
Stars: ✭ 120 (+0%)
Mutual labels:  documentation
L5 Swagger
OpenApi or Swagger integration to Laravel
Stars: ✭ 1,781 (+1384.17%)
Mutual labels:  documentation
Kotlinlang.ru
Russian translation of Kotlin reference
Stars: ✭ 118 (-1.67%)
Mutual labels:  documentation

Shopware Development Documentation

Install

This site is generated with Sculpin, a PHP based static site generator.

First you have to install Sculpin and run the install command in the project directory. This can be done via the init.sh shell script in the project root.

./init.sh

This will download Sculpin and install the required dependencies.

Running the website locally

./watch.sh

This will start a local webserver at http://localhost:8000/. You can use a different port like so:

./watch.sh 8001

Automatic Plugin Packaging

Foreach Plugin in the exampleplugins directory a corresponding ZIP package will be created that can be installed via the shopware plugin manager. It is important to put the plugin into the proper Frontend/Backend/Core subdirectory.

Example

exampleplugins/Frontend/SwagSloganOfTheDay/ will result in exampleplugins/SwagSloganOfTheDay.zip in the generated output directory. Please note that the subdirectory is not part of the resulting directory/filename.

Table of contents in your markdown documents

You have the ability to generate a table of content list for your document. Simply place the following code into your document and a table of contents will appear there magically:

<div class="toc-list"></div>

If you want, you can customize the behavior of the toc list as well. You can define the text of the headline using the attribute data-headline and you can define the max depth of headlines you wanna include into the list with the attribute data-depth:

<div class="toc-list" data-depth="1" data-headline="Awesome table of contents"></div>

Hiding blog posts from search engines

To add a <meta name="robots" content="noindex, nofollow" /> to your blog post, you have to add the following frontmatter entry to your blog post:

robots:
    hide: true

Version History

To create a version history table, you simply have to add a history array to your metadata.

Example:

---
layout: default
indexed: true
...
history:
  2015-11-16: creation
  2015-11-23: added frontend documentation
  2016-01-01: documented millenium bug
---

Algolia Search Configuration

The search is powered by Algolia. Configuration is done via kernel Parameters in app/config/sculpin_kernel.yml:

# app/config/sculpin_kernel.yml
sculpin_algolia:
  application_id: 'MYAPPLICATION'
  index_name:     'developers.shopware.com_prod'

The API Key should be provided via the environment variable SYMFONY__ALGOLIA_API_KEY. To enable the also the environment variable SYMFONY__ALGOLIA_ENABLED must exist.

SYMFONY__ALGOLIA_ENABLED=1 SYMFONY__ALGOLIA_API_KEY=MYAPIKEY ./vendor/bin/sculpin generate

These variables are automatically exported during the Travis-CI build for every merge/commit on the master branch.

CSS helper classes

We added a bunch of CSS helper classes which should help you to build simple layouts.

Warning box

<div class="alert alert-warning">
This is a warning
</div>

Centering of content

<div class="center">
</div>

Alternative:

<div class="is--center">
</div>

Floating images

<div class="is-float-left">
    <img src="sample.png" alt="Sample image" />
</div>
<div class="is-float-right">
    <img src="sample.png" alt="Sample image" />
</div>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].