mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-01 21:13:09 +00:00
* fix live-build resolv.conf * improved debuggability * wip: start-tunnel * fixes for trixie and tor * non-free-firmware on trixie * wip * web server WIP * wip: tls refactor * FE patchdb, mocks, and most endpoints * fix editing records and patch mocks * refactor complete * finish api * build and formatter update * minor change toi viewing addresses and fix build * fixes * more providers * endpoint for getting config * fix tests * api fixes * wip: separate port forward controller into parts * simplify iptables rules * bump sdk * misc fixes * predict next subnet and ip, use wan ips, and form validation * refactor: break big components apart and address todos (#3043) * refactor: break big components apart and address todos * starttunnel readme, fix pf mocks, fix adding tor domain in startos --------- Co-authored-by: Matt Hill <mattnine@protonmail.com> * better tui * tui tweaks * fix: address comments * better regex for subnet * fixes * better validation * handle rpc errors * build fixes * fix: address comments (#3044) * fix: address comments * fix unread notification mocks * fix row click for notification --------- Co-authored-by: Matt Hill <mattnine@protonmail.com> * fix raspi build * fix build * fix build * fix build * fix build * try to fix build * fix tests * fix tests * fix rsync tests * delete useless effectful test --------- Co-authored-by: Matt Hill <mattnine@protonmail.com> Co-authored-by: Alex Inkin <alexander@inkin.ru>
57 lines
1.8 KiB
TypeScript
57 lines
1.8 KiB
TypeScript
import { tuiDropdownOptionsProvider } from '@taiga-ui/core'
|
|
import { provideEventPlugins } from '@taiga-ui/event-plugins'
|
|
import { provideAnimations } from '@angular/platform-browser/animations'
|
|
import {
|
|
ApplicationConfig,
|
|
provideBrowserGlobalErrorListeners,
|
|
provideZonelessChangeDetection,
|
|
} from '@angular/core'
|
|
import { provideRouter, withRouterConfig } from '@angular/router'
|
|
import { tuiDialogOptionsProvider } from '@taiga-ui/experimental'
|
|
import { PatchDB } from 'patch-db-client'
|
|
import {
|
|
PATCH_CACHE,
|
|
PatchDbSource,
|
|
} from 'src/app/services/patch-db/patch-db-source'
|
|
import { routes } from './app.routes'
|
|
import { ApiService } from './services/api/api.service'
|
|
import { LiveApiService } from './services/api/live-api.service'
|
|
import { MockApiService } from './services/api/mock-api.service'
|
|
import { RELATIVE_URL, WorkspaceConfig } from '@start9labs/shared'
|
|
import {
|
|
provideHttpClient,
|
|
withFetch,
|
|
withInterceptorsFromDi,
|
|
} from '@angular/common/http'
|
|
|
|
const {
|
|
useMocks,
|
|
ui: { api },
|
|
} = require('../../../../config.json') as WorkspaceConfig
|
|
|
|
export const appConfig: ApplicationConfig = {
|
|
providers: [
|
|
provideAnimations(),
|
|
provideBrowserGlobalErrorListeners(),
|
|
provideZonelessChangeDetection(),
|
|
provideRouter(routes, withRouterConfig({ onSameUrlNavigation: 'reload' })),
|
|
provideEventPlugins(),
|
|
tuiDropdownOptionsProvider({ appearance: 'start-9' }),
|
|
tuiDialogOptionsProvider({ appearance: 'start-9 taiga' }),
|
|
{
|
|
provide: PatchDB,
|
|
deps: [PatchDbSource, PATCH_CACHE],
|
|
useClass: PatchDB,
|
|
},
|
|
{
|
|
provide: ApiService,
|
|
useClass: useMocks ? MockApiService : LiveApiService,
|
|
},
|
|
{
|
|
provide: RELATIVE_URL,
|
|
useValue: `/${api.url}/${api.version}`,
|
|
},
|
|
provideHttpClient(withInterceptorsFromDi(), withFetch()),
|
|
],
|
|
}
|