This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Uplight Components Library undefined */ | |
| window.SE_GLOBAL_CONFIG={"ACCOUNTS_API_URL":"https://engage-api-gw-dod79bsd.ue.gateway.dev/attrix/v2/accounts","ATTRIX_ATTRIBUTES_API_URL":"https://engage-api-gw-dod79bsd.ue.gateway.dev/attrix/attributes","BILL_FORECAST_API_URL":"https://engage-api-gw-dod79bsd.ue.gateway.dev/triggix/billforecast","BILLING_CYCLE_ALL_API_URL":"https://engage-api-gw-dod79bsd.ue.gateway.dev/billing/all_billing_cycle_dates","BILLING_CYCLE_CURRENT_API_URL":"https://engage-api-gw-dod79bsd.ue.gateway.dev/billing/current_billing_cycle_dates","BILLING_DATA_API_URL":"https://engage-api-gw-dod79bsd.ue.gateway.dev/billing/billing_data","BILLING_ROLLUP_API_URL":"https://engage-api-gw-dod79bsd.ue.gateway.dev/billing/billing/rollup","CHALLENGER_ACTIONS_API_URL":"https://engage-api-gw-dod79bsd.ue.gateway.dev/challenger/actions","CHALLENGER_V2_ACTIONS_API_URL":"https://engage-api-gw-dod79bsd.ue.gateway.dev/challenger/v2/actions","CHALLENGER_ACTIONS_RECONCILE_API_URL":"https://engage-api-gw-dod7 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 1) Create your private key (any password will do, we remove it below) | |
| $ cd ~/.ssh | |
| $ openssl genrsa -des3 -out server.orig.key 2048 | |
| # 2) Remove the password | |
| $ openssl rsa -in server.orig.key -out server.key |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "swagger": "2.0", | |
| "info": { | |
| "title": "FirstFuel API V1", | |
| "version": "v1" | |
| }, | |
| "basePath": "/", | |
| "definitions": { | |
| "blank_response": { | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| HTTP status code symbols for Rails | |
| Thanks to Cody Fauser for this list of HTTP responce codes and their Ruby on Rails symbol mappings. | |
| Status Code Symbol | |
| 1xx Informational | |
| 100 :continue | |
| 101 :switching_protocols | |
| 102 :processing |