RobotFrontend / src /lib /runes /settings.svelte.ts
blanchon's picture
Initial commit
ebcc4b8
raw
history blame contribute delete
372 Bytes
interface Settings {
inferenceServerUrl: string;
transportServerUrl: string;
}
export const settings: Settings = $state({
// inferenceServerUrl: 'http://localhost:8001',
// transportServerUrl: 'http://localhost:8000'
inferenceServerUrl: 'https://blanchon-robotinferenceserver.hf.space',
transportServerUrl: 'https://blanchon-robottransportserver.hf.space/api'
});