Skip to content

Commit

Permalink
Merge pull request #198 from COS301-SE-2024/update/nest-removal
Browse files Browse the repository at this point in the history
Update/nest removal
  • Loading branch information
bukhosi-eugene-mpande authored Aug 20, 2024
2 parents 9805c7d + 2571c9b commit 466a804
Show file tree
Hide file tree
Showing 334 changed files with 594 additions and 12,554 deletions.
31 changes: 0 additions & 31 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

31 changes: 0 additions & 31 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

15 changes: 4 additions & 11 deletions .github/ISSUE_TEMPLATE/working_on.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,15 @@ about: Indicate a feature or bug that you will be working towards implementing
title: ''
labels: ''
assignees: ''

---

---
name: Stand-up
about: Indicate a feature or bug that you will be working towards implementing
labels: enhancement
---

# Working-On

## Description

- [ ] item 1
- [ ] item 2
[Write a description of what you will be working on]

## Additional Information
## Checklist

[Any additional details or context that might be helpful.]
- [ ] item 1
- [ ] item 2
4 changes: 0 additions & 4 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@
- [ ] Refactoring
- [ ] Documentation Update

**Testing Instructions:**

[Provide clear and concise instructions on how to test your changes.]

**Additional Notes:**

[Any additional information that may be helpful for reviewers.]
33 changes: 0 additions & 33 deletions .github/workflows/backend-tests.yml

This file was deleted.

14 changes: 4 additions & 10 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Run ESLint on Push and Pull Requests
name: Run Linter
on:
push:
branches:
Expand All @@ -11,7 +11,7 @@ on:

jobs:
build:
name: Run ESLint
name: ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -23,13 +23,7 @@ jobs:
bun-version: latest
- name: Install dependencies for the frontend
run: bun install
working-directory: src/client
- name: Install dependencies for the backend
run: bun install
working-directory: src/server/workspace
working-directory: src
- name: Run Frontend Linters
run: bun run lint
working-directory: src/client
- name: Run Backend Linters
run: bun run lint
working-directory: src/server/workspace
working-directory: src
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Run Frontend Tests
name: Run Tests
on:
push:
branches:
Expand All @@ -10,7 +10,7 @@ on:
- develop
jobs:
build:
name: Frontend tests
name: Unit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -22,17 +22,17 @@ jobs:
bun-version: latest
- name: Create .env file
run: |
echo AUTH_SECRET=${{ secrets.AUTH_SECRET }} >> src/client/.env
echo TEST_PASSWORD=${{ secrets.TEST_PASSWORD }} >> src/client/.env
echo SENDGRID_RECOVERY=${{ secrets.SENDGRID_RECOVERY }} >> src/client/.env
echo SENDGRID_API_KEY=${{ secrets.SENDGRID_API_KEY }} >> src/client/.env
echo FROM_EMAIL=${{ secrets.FROM_EMAIL }} >> src/client/.env
echo AUTH_SECRET=${{ secrets.AUTH_SECRET }} >> src/.env
echo TEST_PASSWORD=${{ secrets.TEST_PASSWORD }} >> src/.env
echo SENDGRID_RECOVERY=${{ secrets.SENDGRID_RECOVERY }} >> src/.env
echo SENDGRID_API_KEY=${{ secrets.SENDGRID_API_KEY }} >> src/.env
echo FROM_EMAIL=${{ secrets.FROM_EMAIL }} >> src/.env
- name: Install dependencies for the frontend
run: bun install
working-directory: src/client
working-directory: src
- name: Run Frontend Tests
run: npm run test
working-directory: src/client
run: bun run test:coverage
working-directory: src
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
Expand Down
34 changes: 7 additions & 27 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,30 +1,10 @@
# Node.js
node_modules/
npm-debug.log
yarn-error.log

# SvelteKit
/build

# NestJS
# Files
.env
.env.*

.aws.*
.aws

.npm

.amplify-hosting

# IDEs and editors
/.vscode
.idea
*.swp
*.swo

# Directories
build
.vscode
.vercel

# OS generated files
.DS_Store
Thumbs.db
coverage
.svelte-kit
node_modules
97 changes: 0 additions & 97 deletions CONTRIBUTING.MD

This file was deleted.

Loading

0 comments on commit 466a804

Please sign in to comment.