Skip to content

Commit

Permalink
basic be
Browse files Browse the repository at this point in the history
  • Loading branch information
j-dyczka authored and MSzalowski committed Oct 28, 2024
1 parent 58e5c05 commit 119883f
Show file tree
Hide file tree
Showing 24 changed files with 6,463 additions and 195 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ target/
.env/
__pycache__/

# Voting Node Service
# Delegation Node Service
node_storage/
# These are backup files generated by rustfmt
**/*.rs.bk
Expand Down
57 changes: 1 addition & 56 deletions backend/.gitignore
Original file line number Diff line number Diff line change
@@ -1,56 +1 @@
# compiled output
/dist
/node_modules
/build

# Logs
logs
*.log
npm-debug.log*
pnpm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# OS
.DS_Store

# Tests
/coverage
/.nyc_output

# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local

# temp directory
.temp
.tmp

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
dist/
6 changes: 6 additions & 0 deletions backend/nest-cli.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"compilerOptions": {
"assets": [
{
"include": "sql/**/*",
"outDir": "dist"
}
],
"deleteOutDir": true
}
}
Loading

0 comments on commit 119883f

Please sign in to comment.