Skip to content

Commit

Permalink
Project rewrite for more efficient architecture
Browse files Browse the repository at this point in the history
  • Loading branch information
CPlusPatch committed Apr 12, 2024
1 parent 7df9815 commit 4c94f7a
Show file tree
Hide file tree
Showing 53 changed files with 2,347 additions and 2,697 deletions.
3 changes: 0 additions & 3 deletions .dockerignore

This file was deleted.

12 changes: 0 additions & 12 deletions .eslintrc

This file was deleted.

81 changes: 0 additions & 81 deletions .github/workflows/codeql.yml

This file was deleted.

44 changes: 44 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# https://github.com/actions/deploy-pages#usage
name: Deploy to GitHub Pages
on:
workflow_dispatch:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: oven-sh/setup-bun@v1

- name: Install dependencies
run: bun install

- name: Build
run: bun nuxt build --preset github_pages

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./.output/public

# Deployment job
deploy:
# Add a dependency to the build job
needs: build
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
# Deploy to the github_pages environment
environment:
name: github_pages
url: ${{ steps.deployment.outputs.page_url }}
# Specify runner + deployment step
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
153 changes: 0 additions & 153 deletions .github/workflows/docker-publish.yml

This file was deleted.

28 changes: 19 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,24 @@
*.log*
# Nuxt dev/build outputs
.output
.data
.nuxt
.nitro
.cache
.output
.env
dist
.DS_Store
web.sqlite

# Node dependencies
node_modules
*.sqlite-journal
.unlighthouse
config/config.toml
config/workers.toml

# Logs
logs
*.log

# Misc
.DS_Store
.fleet
.idea

# Local env files
.env
.env.*
!.env.example
1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

9 changes: 0 additions & 9 deletions .prettierrc

This file was deleted.

8 changes: 0 additions & 8 deletions .vscode/settings.json

This file was deleted.

Loading

0 comments on commit 4c94f7a

Please sign in to comment.