Skip to content
This repository was archived by the owner on Nov 14, 2024. It is now read-only.

Commit 8452024

Browse files
author
John Ouellet
committed
Initial push
1 parent 4c77897 commit 8452024

File tree

254 files changed

+33080
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

254 files changed

+33080
-0
lines changed

Diff for: .editorconfig

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# top-most EditorConfig file
2+
root = true
3+
4+
# Unix-style newlines with a newline ending every file
5+
[*]
6+
end_of_line = lf
7+
insert_final_newline = true
8+
charset = utf-8
9+
10+
[*.js]
11+
indent_style = space
12+
indent_size = 2

Diff for: .eslintignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.temp
2+
.cache
3+
dist
4+
_site

Diff for: .eslintrc.json

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"env": {
3+
"node": true,
4+
"mocha": true
5+
},
6+
"parser": "@babel/eslint-parser",
7+
"parserOptions": {
8+
"sourceType": "module",
9+
"ecmaVersion": 8,
10+
"requireConfigFile": false
11+
},
12+
"extends": "google",
13+
"rules": {
14+
"arrow-parens": ["error",
15+
"as-needed"
16+
],
17+
"max-len": ["error", {
18+
"code": 120,
19+
"ignoreComments": true
20+
}],
21+
"require-jsdoc": ["error", {
22+
"require": {
23+
"FunctionDeclaration": true,
24+
"MethodDefinition": false,
25+
"ClassDeclaration": false,
26+
"ArrowFunctionExpression": false,
27+
"FunctionExpression": false
28+
}
29+
}]
30+
}
31+
}

Diff for: .gitattributes

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Set the default behavior, in case people don't have core.autocrlf set.
2+
* text=auto
3+
4+
# Declare files that will always have LF line endings on checkout.
5+
*.js text eol=lf
6+
*.sh text eol=lf
7+
*.conf text eol=lf
8+
*.cnf text eol=lf
9+
*.ini text eol=lf
10+
*.php text eol=lf
11+
*.vcl text eol=lf

Diff for: .github/FUNDING.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# These are supported funding model platforms
2+
3+
github: [lando, pirog]
4+
patreon: devwithlando
5+
open_collective: devwithlando
6+
custom: https://lando.dev/join

Diff for: .github/ISSUE_TEMPLATE/acquia.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
name: Acquia
3+
about: Something to do with our Acquia plugin. Note that this issue will get transferred over to `lando/acquia`
4+
labels: acquia
5+
---

Diff for: .github/ISSUE_TEMPLATE/bug_report.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
name: Bug
3+
about: Create a bug report to help us improve lando
4+
labels: bug
5+
---

Diff for: .github/ISSUE_TEMPLATE/documentation.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
name: Docs
3+
about: Create a documentation issue or request
4+
labels: documentation
5+
---

Diff for: .github/ISSUE_TEMPLATE/feature_request.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
name: Feature
3+
about: Suggest an idea for this project
4+
labels: feature
5+
---

Diff for: .github/ISSUE_TEMPLATE/lagoon.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
name: Lagoon
3+
about: Something to do with our Lagoon plugin. Note that this issue will get transferred over to `lando/lagoon`
4+
labels: lagoon
5+
---

Diff for: .github/ISSUE_TEMPLATE/pantheon.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
name: Pantheon
3+
about: Something to do with our Pantheon plugin. Note that this issue will get transferred over to `lando/pantheon`
4+
labels: pantheon
5+
---

Diff for: .github/ISSUE_TEMPLATE/platformsh.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
name: Platform.sh
3+
about: Something to do with our Platform.sh plugin. Note that this issue will get transferred over to `lando/platformsh`
4+
labels: platformsh
5+
---

Diff for: .github/ISSUE_TEMPLATE/security.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
name: Security
3+
about: Create a security issue
4+
labels: documentation
5+
---
6+
7+
**DO NOT SUBMIT A SECURITY ISSUE HERE!**
8+
9+
If you have discovered a security issue with Lando, please contact the Lando Security Team directly at [[email protected]](mailto:[email protected]).
10+
11+
We manage security issues separately in a private repository until the issue has been resolved. Even if you're not sure if it's a security problem, please contact the security team before filing an issue, blogging, or tweeting about it.
12+
13+
**DO NOT SUBMIT A SECURITY ISSUE HERE!**

Diff for: .github/stale.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Number of days of inactivity before an issue becomes stale
2+
daysUntilStale: 180
3+
# Number of days of inactivity before a stale issue is closed
4+
daysUntilClose: 180
5+
# Issues with these labels will never be considered stale
6+
exemptLabels:
7+
- pinned
8+
- security
9+
- critical
10+
- pirog
11+
# Label to use when marking an issue as stale
12+
staleLabel: stale
13+
# Comment to post when marking an issue as stale. Set to `false` to disable
14+
markComment: >
15+
This issue has been automatically marked as stale because it has not had
16+
recent activity. It will be closed if no further activity occurs. Thank you
17+
for your contributions and please check out [this](https://github.com/probot/stale#is-closing-stale-issues-really-a-good-idea) if you are
18+
wondering why we auto close issues.
19+
# Comment to post when closing a stale issue. Set to `false` to disable
20+
closeComment: >
21+
We haven't heard anything here for about a year so we are automatically closing this issue to keep things tidy.
22+
If this is in error then please post in this thread and request the issue be reopened!

Diff for: .github/workflows/pr-docs-tests.yml

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Documentation tests
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
docs-tests:
8+
runs-on: ${{ matrix.os }}
9+
env:
10+
TERM: xterm
11+
strategy:
12+
matrix:
13+
os:
14+
- ubuntu-20.04
15+
node-version:
16+
- '14'
17+
steps:
18+
# Install deps and cache
19+
# Eventually it would be great if these steps could live in a separate YAML file
20+
# that could be included in line to avoid code duplication
21+
- name: Checkout code
22+
uses: actions/checkout@v2
23+
- name: Install node ${{ matrix.node-version }}
24+
uses: actions/setup-node@v2
25+
with:
26+
node-version: ${{ matrix.node-version }}
27+
- name: Get Yarn cache directory
28+
id: yarn-cache-dir-path
29+
run: echo "::set-output name=dir::$(yarn cache dir)"
30+
- name: Use Yarn cache
31+
uses: actions/cache@v2
32+
id: yarn-cache
33+
with:
34+
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
35+
key: ${{ runner.os }}-yarn-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }}
36+
- name: Install Yarn dependencies
37+
run: yarn install --prefer-offline --frozen-lockfile
38+
39+
# Run doc tests
40+
- name: Lint docs code
41+
run: yarn lint
42+
- name: Build 3.x docs
43+
run: yarn build:3.x

Diff for: .gitignore

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Common sys files
2+
.*.swp
3+
._*
4+
.git
5+
.hg
6+
.sign
7+
.lock-wscript
8+
.svn
9+
.wafpickle-*
10+
.DS_Store
11+
.idea/
12+
*.tar
13+
*.jxp
14+
*.sublime-*
15+
16+
# Logs
17+
*.log
18+
logs
19+
20+
# NPM files
21+
node_modules
22+
23+
# lando config
24+
env.yaml
25+
env.yml
26+
lando.env
27+
28+
# Build dirs
29+
build
30+
dist
31+
32+
# coverage reporting
33+
.nyc_output
34+
coverage/
35+
36+
# Vuepress
37+
.temp
38+
.cache
39+
_site

Diff for: .lando.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: lando-docs
2+
services:
3+
node:
4+
type: node:14
5+
build:
6+
- yarn install
7+
scanner: false
8+
ssl: false
9+
sslExpose: false
10+
tooling:
11+
node:
12+
service: node
13+
yarn:
14+
service: node

Diff for: .node-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
14.17.6

Diff for: .npmignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.github
2+
docs
3+
examples
4+
guides
5+
test

Diff for: .tool-versions

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodejs 14.17.6

Diff for: CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## IN DEVELOPMENT
2+
3+
## v0.0.0 - [November 9, 2021](https://github.com/lando/docs/releases/tag/v0.0.0)
4+
5+
Lando is **free** and **open source** software that relies on contributions from developers like you! If you like Lando then help us spend more time making, updating and supporting it by [contributing](https://github.com/sponsors/lando).
6+
7+
* Bullet Points

0 commit comments

Comments
 (0)