Skip to content

Commit

Permalink
Remove backend part (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
vikingair authored Nov 2, 2024
1 parent c5308f4 commit f70f45c
Show file tree
Hide file tree
Showing 80 changed files with 5 additions and 616 deletions.
6 changes: 0 additions & 6 deletions .github/actions/pnpm-install/action.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
name: "PNPM Install"
description: "Install dependencies with pnpm"

inputs:
target:
description: "The name of the directory where the install should run"
required: true

runs:
using: "composite"
steps:
Expand Down Expand Up @@ -34,4 +29,3 @@ runs:
- name: Install dependencies
shell: bash
run: pnpm install --frozen-lockfile
working-directory: ${{ inputs.target }}
5 changes: 0 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/pnpm-install
with:
target: 'frontend'
- name: Lint
run: pnpm lint
working-directory: frontend
- name: Test
run: pnpm test
working-directory: frontend
- name: Build
run: pnpm build
working-directory: frontend
5 changes: 1 addition & 4 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/pnpm-install
with:
target: 'frontend'
- name: Build docs
run: pnpm build
working-directory: frontend
- name: Upload Artifacts
uses: actions/upload-pages-artifact@v3
with:
path: 'frontend/build/'
path: 'build/'

deploy_docs:
needs: build
Expand Down
7 changes: 3 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# See https://help.github.com/ignore-files/ for more about ignoring files.

# dependencies
**/node_modules/**
node_modules

# testing
**/coverage
coverage

# production
**/build
build

# misc
.DS_Store
Expand All @@ -17,7 +17,6 @@
.env.test.local
.env.production.local
.idea/
.eslintcache

npm-debug.log*
yarn-debug.log*
Expand Down
57 changes: 0 additions & 57 deletions backend/api.js

This file was deleted.

1 change: 0 additions & 1 deletion backend/database/2021-04-16.json

This file was deleted.

1 change: 0 additions & 1 deletion backend/database/2021-04-17.json

This file was deleted.

14 changes: 0 additions & 14 deletions backend/package.json

This file was deleted.

4 changes: 0 additions & 4 deletions backend/paths.js

This file was deleted.

Loading

0 comments on commit f70f45c

Please sign in to comment.