Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed .DS_Store
Binary file not shown.
46 changes: 0 additions & 46 deletions PULL_REQUEST_TEMPLATE.md

This file was deleted.

232 changes: 0 additions & 232 deletions README.md

This file was deleted.

Binary file removed assets/cat.gif
Binary file not shown.
Binary file removed assets/field1.jpeg
Binary file not shown.
Binary file removed assets/field3.jpeg
Binary file not shown.
Binary file removed assets/field4.jpeg
Binary file not shown.
Binary file removed assets/field5.jpeg
Binary file not shown.
Binary file removed assets/field6.jpeg
Binary file not shown.
Binary file removed assets/field7.jpeg
Binary file not shown.
Binary file removed assets/fielders.jpeg
Binary file not shown.
Binary file removed assets/fielders.png
Binary file not shown.
Binary file removed assets/frigobar-da-field-quando-meta-eh-batida.jpeg
Binary file not shown.
Binary file removed assets/image.jpg
Binary file not shown.
1 change: 1 addition & 0 deletions kanban-backend/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DATABASE_URL="postgresql://johndoe:randompassword@localhost:5432/mydb?schema=public"
56 changes: 56 additions & 0 deletions kanban-backend/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# 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
4 changes: 4 additions & 0 deletions kanban-backend/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"singleQuote": true,
"trailingComma": "all"
}
Loading