Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs Redo #32

Merged
merged 7 commits into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions .github/workflows/deploy_docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Deploy to GitHub Pages

on:
push:
branches:
- '*'

permissions:
id-token: write
contents: write
pages: write

jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'

- name: Install dependencies
run: npm install --prefix docs

- name: Build static files
run: npm run build --prefix docs

- name: Upload static files as artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/build/

# Deployment job
deploy:
environment:
name: github-pages
url: https://evidence-dev.github.io/duckdb-gsheets
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/main'
steps:
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v4
9 changes: 8 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,5 +74,12 @@
"valarray": "cpp",
"variant": "cpp",
"algorithm": "cpp"
}
},
"editor.acceptSuggestionOnEnter": true,
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
},
"editor.quickSuggestionsDelay": 300
}
137 changes: 0 additions & 137 deletions README.md

This file was deleted.

1 change: 1 addition & 0 deletions README.md
27 changes: 0 additions & 27 deletions _config.yml

This file was deleted.

4 changes: 4 additions & 0 deletions docs/.evidence/customization/custom-formatting.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"version": "1.0",
"customFormats": []
}
9 changes: 9 additions & 0 deletions docs/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.evidence/template
.svelte-kit
build
node_modules
.DS_Store
static/data
*.options.yaml
.env
.evidence/meta
10 changes: 10 additions & 0 deletions docs/evidence.plugins.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

components:
# This loads all of evidence's core charts and UI components
# You probably don't want to edit this dependency unless you know what you are doing
"@evidence-dev/core-components": {}

datasources:
# You can add additional datasources here by adding npm packages.
# Make to also add them to `package.json`.
"@evidence-dev/duckdb": { }
Loading
Loading