Skip to content

Commit

Permalink
refactor(backend)!: initial stages of backend rewrite to dotnet
Browse files Browse the repository at this point in the history
  • Loading branch information
BrycensRanch committed Aug 11, 2024
1 parent 9641125 commit 2523c11
Show file tree
Hide file tree
Showing 705 changed files with 8,611 additions and 18,965 deletions.
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ engine-strict=false
auto-install-peers=true
enable-pre-post-scripts=true
strict-peer-dependencies=false
package-manager-strict=false
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
71 changes: 7 additions & 64 deletions backend/.dockerignore
Original file line number Diff line number Diff line change
@@ -1,66 +1,9 @@
# https://github.com/smartiniOnGitHub/fastify-example/blob/master/.dockerignore
.DS_Store
**/bin/
**/obj/
**/*.user
**/**/bin
**/**/obj

.git
.gitignore

.settings
.classpath
.project
.cache*
.metadata
.worksheet
RemoteSystemsTempFiles/
Servers/

.gradle
bin/

*.log
*.log*
*~*
*.bak
*.tmp
*.temp
Thumbs.db

dev.db

PostgresData
dockerApp
DockerRedisCache
backupPostgres
.nyc_output
/cypress

_old
# /*.min.js*

/.vscode
# AYE AYE WE NEED THAT MY MAN
# /*.test.js*
# /*.test.ts*
tmp/
temp/
/target/
/target-eclipse/

local.properties

# *.class

# node_modules

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

.nyc_output
/coverage

.dockerignore
Dockerfile
Dockerfile*.*
Jenkinsfile
Jenkinsfile*.*
/jenkins
db
test
File renamed without changes.
1 change: 0 additions & 1 deletion backend/.env.example

This file was deleted.

17 changes: 0 additions & 17 deletions backend/.eslintignore

This file was deleted.

208 changes: 0 additions & 208 deletions backend/.eslintrc.json

This file was deleted.

39 changes: 39 additions & 0 deletions backend/.github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
---
name: 'CodeQL Analysis'

on:
workflow_dispatch:
push:
paths-ignore:
- '**.md'
- '**.yml'
schedule:
- cron: '13 6 * * 0'

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
security-events: write

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.x

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: csharp
queries: +security-and-quality

- name: Autobuild
uses: github/codeql-action/autobuild@v2

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
22 changes: 22 additions & 0 deletions backend/.github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: Build docker image

on:
push:
paths-ignore:
- '**.md'
workflow_dispatch:

jobs:
build-image:
name: Build docker image
runs-on: ubuntu-latest

steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build and push
uses: docker/build-push-action@v5
with:
file: ./dockerfile
Loading

0 comments on commit 2523c11

Please sign in to comment.