16 lines
563 B
JavaScript
16 lines
563 B
JavaScript
|
|
// Local development config.
|
||
|
|
//
|
||
|
|
// Copy this file to config.js and fill in your values:
|
||
|
|
// cp config.example.js config.js
|
||
|
|
//
|
||
|
|
// config.js is gitignored and never deployed to S3 — it is purely a local
|
||
|
|
// dev convenience so you don't have to type the API URL and key into the UI
|
||
|
|
// on every page load.
|
||
|
|
//
|
||
|
|
// In production the connection bar in the UI is used instead. The values
|
||
|
|
// entered there are saved in sessionStorage for the duration of the session.
|
||
|
|
window.REPERTORY_CONFIG = {
|
||
|
|
apiUrl: "http://localhost:5000",
|
||
|
|
apiKey: "dev-secret-key-change-me",
|
||
|
|
};
|