Skip to content

Commit

Permalink
Merge pull request #89 from Dedakup/feature/tasks-CR
Browse files Browse the repository at this point in the history
feat(task-create, read): Integrated authentification with crud operati…
  • Loading branch information
Dedakup authored Nov 24, 2024
2 parents b80736f + d4a65a1 commit 60c5731
Show file tree
Hide file tree
Showing 21 changed files with 9,238 additions and 1,806 deletions.
4 changes: 4 additions & 0 deletions backend/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
JWKS_URI=https://your-auth0-domain/.well-known/jwks.json
AUDIENCE=your-api-audience
TOKEN_ISSUER=https://your-auth0-domain/
DYNAMODB_TASKS_TABLE=your-dynamodb-table-name
45 changes: 43 additions & 2 deletions backend/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,45 @@
# Logs
logs
*.log
npm-debug.log*

# Visual Studio Code
.vscode

tmp

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directory
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
node_modules
.serverless

# Optional npm cache directory
.npm

# Optional REPL history
.node_repl_history

# project files that contain sensitive data
.env
.env.local
event.json
policyDocument.json
*.zip
Loading

0 comments on commit 60c5731

Please sign in to comment.