Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
karissarjacobsen committed Nov 19, 2024
1 parent 8b680ae commit 0bd4f56
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
DS_PRIVATE_KEY_PATH=private.key
DS_CLIENT_ID={CLIENT_ID}
DS_CLIENT_SECRET={CLIENT_SECRET}
DS_IMPERSONATED_USER_ID={USER_ID}
DS_ACCOUNT_ID={ACCOUNT_ID}
DS_AUTH_SERVER=https://account-d.docusign.com
DS_REDIRECT_URI=http://localhost:8080/api/ds/callback
TOKEN_URL=https://account-d.docusign.com/oauth/token
CLIENT_URL=http://localhost:3000
INTEGRATOR_KEY_JWT={CLIENT_ID}
SESSION_SECRET={SESSION_SECRET}
PORT=8080
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

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

0 comments on commit 0bd4f56

Please sign in to comment.