A simple API that offloads the task to stream a file to a SFTP server.
These instructions will get you a working copy of the project, ready for test and deployment
Make sure you have node installed, you can use nvm
to have multiple
node versions
nvm i lts/erbium
In development mode the app uses redis so be sure to have it installed and running, in docker it'd be:
docker run -p 6379:6379 redis:alpine
npm ci
To run the api
npm run api-dev
To run the worker
npm run worker-dev
To configure the app, you'll have to set the following environment variables:
REDIS_HOST
REDIS_PORT
REDIS_URL
SFTP_HOST
SFTP_USER
SFTP_PASSWORD
REMOTE_PATH
JWT_SECRET
JWT_AUTH_TOKEN
ProTip: You can store your env variables in a .env
file, see more in dotenv
NOTES:
You'll most likely use REDIS_HOST
and REDIS_PORT
in local development, and
REDIS_URL
in production, but ultimately it is up to the platform the app is
running
For REMOTE_PATH
you'll have to pass the absolute remote path.
JWT_SECRET
refers to the secret key used by JWT to validate the token
JWT_AUTH_TOKEN
a token used to validate the decoded auth object. The auth
object should have the following shape:
{
token: 'my-super-token'
}
npm t
The exposed endpoints require a JWT
token to be passed in the Authorization
header of the request (or a token
query param).
A Token can be created via:
npm run create-token
Note: JWT_AUTH_TOKEN
and JWT_SECRET
need to be set as environment variables
- Offload URL to remote :
POST /stream-url
MIT