repertory/config.example.js

16 lines
563 B
JavaScript
Raw Normal View History

2026-06-09 15:04:27 -04:00
// 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",
};