All Projects → localstack → docs

localstack / docs

Licence: Apache-2.0 license
The LocalStack documentation 📖

Programming Languages

SCSS
7915 projects
HTML
75241 projects
shell
77523 projects

Projects that are alternatives of or similar to docs

testing-spring-boot-applications-masterclass
🍃 Everything You Need to Know About Testing Spring Boot Applications
Stars: ✭ 185 (+670.83%)
Mutual labels:  localstack
localstack-spring-boot-starter
SpringBoot Starter for Localstack
Stars: ✭ 38 (+58.33%)
Mutual labels:  localstack
Localstack
💻 A fully functional local AWS cloud stack. Develop and test your cloud & Serverless apps offline!
Stars: ✭ 37,724 (+157083.33%)
Mutual labels:  localstack
dockerX
Examples of amazing Docker/Docker-Compose/Docker Swarm technologies
Stars: ✭ 17 (-29.17%)
Mutual labels:  localstack
spring-localstack
An easy way to use Localstack with Spring
Stars: ✭ 48 (+100%)
Mutual labels:  localstack
nodejs-hexagonal-boilerplate
Boilerplate de arquitetura hexagonal usando node.js
Stars: ✭ 127 (+429.17%)
Mutual labels:  localstack
sample-terraform-localstack
Sample project to use Terraform, Localstack (AWS Local) and Docker compose with Nodejs
Stars: ✭ 52 (+116.67%)
Mutual labels:  localstack
go-localstack
Go Wrapper for using localstack
Stars: ✭ 56 (+133.33%)
Mutual labels:  localstack

LocalStack Docs

Repository for docs.localstack.cloud.

Getting Started

Basics

LocalStack Docs is using the following technology stack:

Clone the repo

Clone this repository and initialize the Git submodules recursively (themes/docsy is a submodule that again has submodules for vendored assets like fontawesome).

git clone --recurse-submodules --depth 1 [email protected]:localstack/docs.git

This performs a shallow clone, which leads to only the main branch being configured for your remote. To be able to pull/push from/to all branches, please run:

git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*" && git fetch

or:

git clone [email protected]:localstack/docs.git
cd docs
git submodule update --init --recursive

Install Hugo

LocalStack Docs is based on the Hugo static site generator.

In order to contribute to LocalStack Docs, you need to install Hugo in order to verify your changes. Make sure to install the extended version of Hugo.

Run locally

Once you have Hugo installed, you can start your local server with the following command:

hugo serve

or run in developer mode with automatic reload:

hugo serve --watch=true --disableFastRender -D

Once the server is started, the locally served Docs are available at http://localhost:1313.

Writing content

The whole site is generated with Hugo, a powerful static-site generator.

You can find an extensive documentation on how to use Hugo in their docs, however most of the content is written in plain Markdown.

Make sure to follow the best practices below when contributing content.

Best Practices

Please follow these best practices when writing documentation in this repository:

  • Use the custom command shortcode for all one-liner commands (also when their output is presented). Do not use it for bash scripts with comments. You can find a more detailed description here: #55

  • Use the ref or relref shortcode when creating non-external links (but still use the markdown native image linking, ref doesn't work there). You can either use ref or relref, the point is to have compile time internal-link checks (which works for both).

  • Stick to markdown if possible.

  • Use one line for each sentence in markdown. If you don't add a backslash at the end of the line or add two new-lines, there won't be linebreak in the rendered text.

  • For snippets, define the correct syntax highlighting. Here's a list of the supported languages: https://gohugo.io/content-management/syntax-highlighting/

  • If you want to highlight a specific line, there's a feature for that: https://gohugo.io/content-management/syntax-highlighting/#highlighting-in-code-fences

    • This is also supported by the command shortcode!
  • Handling images can be a bit tedious with Hugo. If you want to use images in your post, create a new leaf bundle directory and put the image and the post (named index.md) in there (you can find examples in the docs already, f.e. the cognito service docs).

    Then you can use the usual markdown syntax with a relative path (f.e.: ![Alternative_Text](file_next_to_post.png)).

    If you want to resize the image, use the figure or img shortcode. For example: {{< img src="cockpit-init-check.png" class="img-fluid shadow rounded" width="150px" >}}

PS.: Feel free to add more best practices here.

Troubleshooting

This section covers common issues when working with LocalStack Docs:

Missing shortcodes

Example error:

Start building sites … 
hugo v0.88.1-5BC54738+extended linux/amd64 BuildDate=2021-09-04T09:39:19Z VendorInfo=gohugoio
Error: Error building site: "/home/localstack/Repos/docs-test/content/en/get-started/_index.md:57:1": failed to extract shortcode: template for shortcode "alert" not found
Built in 45 ms

Make sure to correctly clone and initialize the git submodules of this repo. For details see the section "Clone the repo" above.

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].