Skip to content

Commit

Permalink
feat: add docs app scaffold
Browse files Browse the repository at this point in the history
  • Loading branch information
mychidarko committed Nov 19, 2023
1 parent 63c723d commit af1c26f
Show file tree
Hide file tree
Showing 438 changed files with 200,294 additions and 0 deletions.
10 changes: 10 additions & 0 deletions apps/docs/.editorconfig
@@ -0,0 +1,10 @@
[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
trim_trailing_whitespace = false
4 changes: 4 additions & 0 deletions apps/docs/.github/FUNDING.yml
@@ -0,0 +1,4 @@
# These are supported funding model platforms

open_collective: leaf
github: leafsphp
Binary file added apps/docs/.github/contributing/oxford-comma.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
111 changes: 111 additions & 0 deletions apps/docs/.github/contributing/writing-guide.md

Large diffs are not rendered by default.

16 changes: 16 additions & 0 deletions apps/docs/.github/dependabot.yml
@@ -0,0 +1,16 @@
version: 2
updates:
# Enable version updates for npm
- package-ecosystem: 'npm'
# Look for `package.json` and `lock` files in the `root` directory
directory: '/'
# Check the npm registry for updates every day (weekdays)
schedule:
interval: 'daily'
open-pull-requests-limit: 10
versioning-strategy: lockfile-only
allow:
- dependency-name: 'vue'
- dependency-name: 'vitepress'
- dependency-name: '@vue/theme'
- dependency-name: '@vue/repl'
5 changes: 5 additions & 0 deletions apps/docs/.github/pull_request_template.md
@@ -0,0 +1,5 @@
## Description of Problem

## Proposed Solution

## Additional Information
23 changes: 23 additions & 0 deletions apps/docs/.github/workflows/automerge.yml
@@ -0,0 +1,23 @@
name: Dependabot auto-merge
on: pull_request

permissions:
pull-requests: write
contents: write

jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1.1.1
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'
- name: Enable auto-merge for theme
if: ${{contains(steps.metadata.outputs.dependency-names, '@leafphp/docs-theme') && steps.metadata.outputs.update-type != 'version-update:semver-major'}}
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
113 changes: 113 additions & 0 deletions apps/docs/.gitignore
@@ -0,0 +1,113 @@
### OSX ###
# General
.DS_Store
.AppleDouble
.LSOverride

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

### Node ###
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# pnpm link folder
pnpm-global

# dotenv environment variables file
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache

# rollup.js default build output
dist/

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# Temporary folders
tmp/
temp/
TODOs.md
src/api/index.json
src/examples/data.json
src/tutorial/data.json
draft.md

.idea/
6 changes: 6 additions & 0 deletions apps/docs/.prettierrc
@@ -0,0 +1,6 @@
{
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 75
}

0 comments on commit af1c26f

Please sign in to comment.