Skip to content
Merged
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
15 changes: 15 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
##
## signNow API SDK configuration
##

## Replace these dummy values with your actual credentials except API_HOST
SIGNNOW_API_HOST=https://api.signnow.com
SIGNNOW_API_BASIC_TOKEN=c2lnbk5vdyBBUEkgc2FtcGxlIEFwcCB2MS4wCg==
SIGNNOW_API_USERNAME=user@signnow.com
SIGNNOW_API_PASSWORD=coolest_pazzw0rd

# Absolute or relative (starts with .) path to the directory
# where the downloaded files will be stored (make sure you have write permissions to this directory)
#
# Default: ./storage/downloads
SIGNNOW_DOWNLOADS_DIR=./storage/downloads
9 changes: 9 additions & 0 deletions .env.test.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
##
## signNow API SDK configuration for tests running
##
SIGNNOW_API_HOST=http://0.0.0.0:8086
SIGNNOW_API_BASIC_TOKEN=c2lnbk5vdyBBUEkgc2FtcGxlIEFwcCB2MS4wCg==
SIGNNOW_API_USERNAME=user@signnow.com
SIGNNOW_API_PASSWORD=coolest_pazzw0rd

SIGNNOW_DOWNLOADS_DIR=./storage/downloads
62 changes: 0 additions & 62 deletions .esdoc.json

This file was deleted.

1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

214 changes: 0 additions & 214 deletions .eslintrc.json

This file was deleted.

15 changes: 15 additions & 0 deletions .github/workflows/secure-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Secure Build Workflow

on:
push:
branches:
- main
pull_request:
types: [ opened, synchronize, reopened ]

jobs:
secure-build:
# The stable version specified here is intentional.
# Please consult with the Security team before making any changes.
uses: pdffiller/security_checks/.github/workflows/secure-build.yml@stable
secrets: inherit
30 changes: 12 additions & 18 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
logs
*.log
pids
*.pid
*.seed
lib-cov
coverage
.grunt
build/Release
.lock-wscript
node_modules
test-settings.js
*.DS_Store
launch.json
.vscode
.history
.idea
.npmrc
/.idea
/.fleet
/.vscode
/.netbeans
/node_modules
/target
.env
.env.backup
.env.test
.env.production
.env.development
package-lock.json
5 changes: 0 additions & 5 deletions .huskyrc.json

This file was deleted.

Loading