# Control Center ## Installation 1. Add environment and configurations: - `.env` ```env PROXY_TARGET="https://" ``` - `src/assets/appConfig.json`: ```json { "fileStorageEndpoint": "https://", "constants": { "currencies": [{ "source": "", "currency": "USD" }] } } ``` - `src/assets/authConfig.json`: ```json { "realm": "internal", "auth-server-url": "https://", "ssl-required": "external", "resource": "control-center", "public-client": true } ``` 2. Install packages ```sh npm ci ``` ## Usage 1. Start ```sh npm start ``` 2. Open [localhost:4200](http://localhost:4200/) If you want to develop a library, then it's better to start building library separately: ```sh npm run dev npm run dev-libs ```