Variable Name | Description | i.e. |
---|---|---|
MONGODB_DATABASE_URL | mLab | mongodb://username:password@ds133321.mlab.com:33321/collection |
EMAIL_PASS | Sendgrid | SG.co-H8LFKQamLdbOZXulclw.6GzldaSZGBYbVNcRmxRxiTOb5ZDRdNasd1Xmyt398 |
IPAPI_API_KEY (OPTIONAL) | IPAPI | 5eeeb81fd0aasdf737b61ad81264ffcasda6e042 |
CORS (OPTIONAL) | DOMAIN of CORS | default to *, i.e: http://sample.herokuapp.com |
SYSTEM_EMAIL | email address for reset password email | webmaster@example.com |
APP_NAME | App name | APP |
TWILIO_API_KEY (OPTIONAL) | Provide to enable SMS capabilities | --- |
AWS_ACCESS_KEY (OPTIONAL) | For s3upload | --- |
AWS_SECRET_KEY (OPTIONAL) | For s3upload | --- |
REDIS_HOST (OPTIONAL) | For googlesheet db routes caching | --- |
REDIS_PORT (OPTIONAL) | For googlesheet db routes caching | --- |
Endpoints are created from @rexfng/db Node Module. Check for detail documentation.
Route | Action | Description |
---|---|---|
/:collection | GET | Get all records from collection |
/:collection | POST | Create a record in a collection |
/:collection/:id | GET | GET a record in a collection by ID |
/:collection/:id | PUT | Update a record in a collection by ID |
/:collection/:id | DELETE | Delete a record in a collection by ID |
Endpoints are created from @rexfng/auth Node Module. Check for detail documentation.
Route | Action | Required Parameters |
---|---|---|
/register | POST | [username (email), password] |
/login | POST | [username (email), password] |
/token | POST | [refresh_token] |
/resetpassword | POST | [username, from, to, subject, text, html] |
/resetpassword_confirmation | POST | [username, token, password] |
/passwordchange | POST | [username, password] |
/app_create | POST | [username, password] |
/.well-known/jwks.json | GET | [username, password] |
Route | Action | Required Parameters |
---|---|---|
POST | [from, to, subject, text, html] |
Route | Action | Required Parameters |
---|---|---|
/api/getcode | POST | [label, issuer, period, digits] |
/api/verifycode | POST | [label, code issuer, period, digits] |
/sms/getcode | POST | [phone_number, country_code, code_length] |
/sms/verifycode | POST | [phone_number, country_code, verification_code] |
Route | Action | Query Parameters |
---|---|---|
/googlesheet/:id | GET | [limit, page, q, cached, search_terms, sheet] |
Route | Action | Required Parameters |
---|---|---|
/emailtest | POST | [email] |
/passwordtest | POST | [password] |
Route | Action | Required Parameters |
---|---|---|
/s3upload | POST | [ttl, bucket, filename, filetype] |