Merge branch 'hotfix/1.0.1' into 'master'
Add Gitlab pages support
Merge branch 'release/1.0.0'
A phone messaging system
This project usese environment variables to work. For most cases, the
defaults work but some sensitive info like keys must be overridden. Copy
the file in config/env.dist
to .env
in the project root and override
the values.
When running with make run
, it'll pick up these values automatically.
If you're doing it the hard way, you'll have to source them. You must
set the DEAD_DROP_ACCOUNT_SID
to match your account sid. This is so
dead drop can filter out calls from other accounts.
You'll need Docker to run the project.
make run
If you don't want to use docker, you can also run it the old fashioned way.
yarn install
(recommended), or npm install
npm start
This project uses JSDoc to generate documentation. Generate everything
with npm run document
. The documentation will be generated in the
doc
directory.
You can also do some other operations
make build
make upload
make clean
Get a twilio number, and on the configuration set the voice settings to
"Webhooks/TwiML" and point the A call comes in
hook to:
the /menus/main/
path of your dead drop installation. For example:
https://dead-drop.unlimited.piza/menus/main
. It must be accessible
from the internet.
You will also need your account sid. This is obtained from the "Account Settings" area in the twilio dashboard.
This project uses the Hapi Style Guide for
javascript style, and includes eslint configuration to check them. Run
npm run lint
to check the code.