Skip to content
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
11 changes: 11 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
## Purpose
> Briefly describe what this pull request does.

## Related Issues
> Include any related issues that are resolved by this PR.

## Checklist
- [ ] Updated `sidebars.ts` if adding a new documentation page
- [ ] Run `npm run start` to preview the changes locally
- [ ] Run `npm run build` to ensure the build passes without errors
- [ ] Verified all links are working (no broken links)
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ jobs:
build:
name: Build Docusaurus
runs-on: ubuntu-latest
defaults:
run:
working-directory: docusaurus/openchoreo

steps:
- uses: actions/checkout@v4
with:
Expand All @@ -22,7 +20,6 @@ jobs:
with:
node-version: 20
cache: npm
cache-dependency-path: docusaurus/openchoreo/package-lock.json

- name: Install dependencies
run: npm ci
Expand All @@ -32,7 +29,7 @@ jobs:
- name: Upload Build Artifact
uses: actions/upload-pages-artifact@v3
with:
path: docusaurus/openchoreo/build
path: build

deploy:
name: Deploy to GitHub Pages
Expand Down
63 changes: 0 additions & 63 deletions .github/workflows/jekyll-gh-pages.yml

This file was deleted.

66 changes: 0 additions & 66 deletions .github/workflows/jekyll.yml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ jobs:
test-deploy:
name: Test deployment
runs-on: ubuntu-latest
defaults:
run:
working-directory: docusaurus/openchoreo

steps:
- uses: actions/checkout@v4
with:
Expand All @@ -22,7 +20,6 @@ jobs:
with:
node-version: 20
cache: npm
cache-dependency-path: docusaurus/openchoreo/package-lock.json

- name: Install dependencies
run: npm ci
Expand Down
43 changes: 20 additions & 23 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,22 +1,12 @@
# Jekyll
_site/
.sass-cache/
.jekyll-cache/
.jekyll-metadata
vendor/
# Dependencies
node_modules/

# Ruby
*.gem
*.rbc
/.config
/coverage/
/InstalledFiles
/pkg/
/spec/reports/
/spec/examples.txt
/test/tmp/
/test/version_tmp/
/tmp/
# Production
build/

# Docusaurus
.docusaurus
.cache-loader

# macOS
.DS_Store
Expand All @@ -30,13 +20,20 @@ vendor/
*.swo
*~

# Logs
*.log

# Environment variables
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

# Logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Bundler
# Misc
coverage/
.bundle/
vendor/bundle/
tmp/
1 change: 0 additions & 1 deletion .ruby-version

This file was deleted.

35 changes: 0 additions & 35 deletions Gemfile

This file was deleted.

Loading