generated from readthedocs/tutorial-template
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3,852 changed files
with
4,581 additions
and
811,491 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
{ | ||
"files": [ | ||
"README.md" | ||
], | ||
"imageSize": 100, | ||
"commit": false, | ||
"commitConvention": "angular", | ||
"contributors": [ | ||
{ | ||
"login": "gustavokennedy", | ||
"name": "Gustavo Kennedy Renkel", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/98914036?v=4", | ||
"profile": "http://overall.cloud", | ||
"contributions": [ | ||
"translation" | ||
] | ||
}, | ||
{ | ||
"login": "zaharovrd", | ||
"name": "Roman", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/8171816?v=4", | ||
"profile": "http://www.youradman.com", | ||
"contributions": [ | ||
"translation" | ||
] | ||
}, | ||
{ | ||
"login": "tomekkowalczyk", | ||
"name": "Tomasz Kowalczyk", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/39382654?v=4", | ||
"profile": "http://adevo.pl", | ||
"contributions": [ | ||
"doc" | ||
] | ||
}, | ||
{ | ||
"login": "kukis2107", | ||
"name": "kukis2107", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/60287846?v=4", | ||
"profile": "https://github.com/kukis2107", | ||
"contributions": [ | ||
"translation" | ||
] | ||
}, | ||
{ | ||
"login": "putzwasser", | ||
"name": "putzwasser", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/26040044?v=4", | ||
"profile": "https://github.com/putzwasser", | ||
"contributions": [ | ||
"review" | ||
] | ||
}, | ||
{ | ||
"login": "Moongazer", | ||
"name": "Moongazer", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/1685510?v=4", | ||
"profile": "https://github.com/Moongazer", | ||
"contributions": [ | ||
"doc" | ||
] | ||
}, | ||
{ | ||
"login": "patrykgruszka", | ||
"name": "Patryk Gruszka", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/8580942?v=4", | ||
"profile": "https://github.com/patrykgruszka", | ||
"contributions": [ | ||
"doc" | ||
] | ||
}, | ||
{ | ||
"login": "Amiyah14", | ||
"name": "Emily", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/45315891?v=4", | ||
"profile": "https://github.com/Amiyah14", | ||
"contributions": [ | ||
"doc" | ||
] | ||
} | ||
], | ||
"contributorsPerLine": 7, | ||
"skipCi": true, | ||
"repoType": "github", | ||
"repoHost": "https://github.com", | ||
"projectName": "user-documentation", | ||
"projectOwner": "mautic", | ||
"commitType": "docs" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
FROM python:3.10 | ||
|
||
# Don't update to a higher version until this issue has been fixed: https://github.com/errata-ai/vale/issues/528 | ||
# Please keep version in sync with the version in .github/workflows/linting.yml for a consistent experience | ||
ENV VALE_VERSION=2.29.2 | ||
|
||
WORKDIR /workspace | ||
|
||
# Needed for Vale (rst2html) and reStructuredText (rstcheck) | ||
RUN pip install rst2html rstcheck | ||
|
||
RUN mkdir -p vale && cd vale && wget https://github.com/errata-ai/vale/releases/download/v${VALE_VERSION}/vale_${VALE_VERSION}_Linux_64-bit.tar.gz && \ | ||
tar -xf vale_${VALE_VERSION}_Linux_64-bit.tar.gz && cp /workspace/vale/vale /usr/local/bin/vale && cd ../ | ||
|
||
# /home/gitpod/.local/bin ensures that Python packages like rstcheck can be found | ||
ENV PATH=/home/gitpod/.local/bin:$PATH | ||
|
||
# Create the gitpod user. UID must be 33333. https://www.gitpod.io/docs/configure/workspaces/workspace-image#use-a-custom-dockerfile | ||
RUN useradd -l -u 33333 -G sudo -md /home/gitpod -s /bin/bash -p gitpod gitpod | ||
|
||
USER gitpod |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# .readthedocs.yaml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
# Required | ||
version: 2 | ||
|
||
# Set the version of Python and other tools you might need | ||
build: | ||
os: ubuntu-20.04 | ||
tools: | ||
python: "3.9" | ||
# You can also specify other tool versions: | ||
# nodejs: "16" | ||
# rust: "1.55" | ||
# golang: "1.17" | ||
|
||
# Build documentation in the docs/ directory with Sphinx | ||
sphinx: | ||
configuration: docs/conf.py | ||
|
||
# If using Sphinx, optionally build your docs in additional formats such as PDF | ||
# formats: | ||
|
||
# Optionally declare the Python requirements required to build your docs | ||
python: | ||
install: | ||
- requirements: docs/requirements.txt |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
Welcome to the Mautic end user documentation editor! | ||
Welcome to the Mautic End User documentation editor., open | ||
|
||
We've already set up everything you need. To get started, follow these steps: | ||
1. Open a file in the `docs/` folder (files that end with `.rst` are docs files) | ||
2. Click the magnifier icon in the top right corner to see a LIVE preview of the file you're editing | ||
Everything you need is already set up. To get started, follow these steps: | ||
1. Open a file in the `docs/` folder - files that end with `.rst` are docs files. | ||
2. Click the magnifier icon in the top right corner to see a live preview of the file you're editing. | ||
|
||
Pretty cool, right? | ||
|
||
Happy writing! | ||
Happy writing. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.