Skip to content

Commit

Permalink
feat(authentification): Integrated authentification with crud operati…
Browse files Browse the repository at this point in the history
…ons, created logout, create task and read tasks
  • Loading branch information
Dedakup committed Nov 24, 2024
1 parent f64abc7 commit d4a65a1
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 d4a65a1

Please sign in to comment.