├── .editorconfig ├── .env ├── .eslintrc.js ├── .eslintrc.json ├── .gitignore ├── .husky └── pre-commit ├── .prettierrc ├── Dockerfile.migrations ├── Jenkinsfile ├── LICENCE ├── README-Env-Variables.adoc ├── README.adoc ├── README.md ├── database ├── README.adoc ├── datamodels │ ├── LD-1e2a.json │ ├── LD_1e1a.json │ ├── map_format.json │ ├── multi_entity_multi_attributes.json │ ├── multi_entity_single_attributes.json │ ├── singe_entity_multi_attributes.json │ └── singe_entity_single_attributes.json ├── drizzle.config.ts └── migrations │ ├── generated │ ├── 0000_chief_payback_0.7.2.sql │ ├── 0001_nifty_rictor_0.7.2_to_0.8.0.sql │ ├── 0002_powerful_tarantula_0.8.0_to_0.8.3.sql │ ├── 0003_light_saracen_0.8.3_to_0.8.8.sql │ ├── 0004_lively_tenebrous_0.8.8_to_0.8.10.sql │ ├── 0005_moaning_betty_ross_0.9.0.sql │ ├── 0006_short_peter_quill_0.9.1.sql │ ├── 0007_sour_mephisto_0.10.0.sql │ ├── 0008_wonderful_omega_red_0.10.1.sql │ ├── 0009_wonderful_fat_cobra_0.11.0.sql │ ├── 0010_slippery_santa_claus_0.11.2.sql │ ├── 0011_bitter_loa_0.12.0a.sql │ ├── 0012_peaceful_galactus_0.12.0b.sql │ ├── 0013_omniscient_shotgun_0.15.0.sql │ ├── 0014_thick_warstar_0.15.1.sql │ ├── 0015_sudden_nightmare_0.16.0.sql │ ├── 0016_nasty_the_renegades_0.17.0.sql │ ├── 0017_thankful_yellowjacket_0.17.5.sql │ ├── 0018_past_deadpool_0.18.0.sql │ ├── 0019_needy_energizer_0.18.3.sql │ ├── 0020_cute_peter_parker_0.19.11.sql │ ├── 0021_noisy_frightful_four_0.20.0.sql │ ├── 0022_abnormal_dormammu_0.21.1.sql │ ├── 0023_long_energizer_0.22.0.sql │ ├── 0024_needy_justice_0.22.1.sql │ ├── 0025_fair_crusher_hogan_0.22.3.sql │ ├── 0026_ancient_chat_0.23.0.sql │ ├── 0027_fine_terror_0.23.1.sql │ ├── 0028_bouncy_frightful_four_0.24.0.sql │ ├── 0029_abandoned_zombie_0.24.1.sql │ ├── 0030_useful_abomination_1.0.0.sql │ └── meta │ │ ├── 0000_snapshot.json │ │ ├── 0001_snapshot.json │ │ ├── 0002_snapshot.json │ │ ├── 0003_snapshot.json │ │ ├── 0004_snapshot.json │ │ ├── 0005_snapshot.json │ │ ├── 0006_snapshot.json │ │ ├── 0007_snapshot.json │ │ ├── 0008_snapshot.json │ │ ├── 0009_snapshot.json │ │ ├── 0010_snapshot.json │ │ ├── 0011_snapshot.json │ │ ├── 0012_snapshot.json │ │ ├── 0013_snapshot.json │ │ ├── 0014_snapshot.json │ │ ├── 0015_snapshot.json │ │ ├── 0016_snapshot.json │ │ ├── 0017_snapshot.json │ │ ├── 0018_snapshot.json │ │ ├── 0019_snapshot.json │ │ ├── 0020_snapshot.json │ │ ├── 0021_snapshot.json │ │ ├── 0022_snapshot.json │ │ ├── 0023_snapshot.json │ │ ├── 0024_snapshot.json │ │ ├── 0025_snapshot.json │ │ ├── 0026_snapshot.json │ │ ├── 0027_snapshot.json │ │ ├── 0028_snapshot.json │ │ ├── 0029_snapshot.json │ │ ├── 0030_snapshot.json │ │ └── _journal.json │ └── migrate.mjs ├── docker-compose.local.yml ├── docs ├── images │ └── SC_Dashboard_Extended.png ├── project-dependencies.md ├── technical-documentation.md └── wizards.md ├── env.example ├── frontend ├── .dockerignore ├── .env ├── .gitignore ├── Dockerfile.frontend ├── Dockerfile.frontend-with-basepath ├── README.adoc ├── api │ ├── authData-service.ts │ ├── corporateInfo-service.ts │ ├── dashboard-service.ts │ ├── dataSource-service.ts │ ├── general-settings-service.ts │ ├── logo-service.ts │ ├── mail-service.ts │ ├── menu-service.ts │ ├── panel-service.ts │ ├── report-service.ts │ ├── tab-service.ts │ ├── tenant-service.ts │ ├── widget-service.ts │ ├── widgetPanelRelation-service.ts │ ├── wizard-service-api.ts │ ├── wizard-service-fiware.ts │ └── wizard-service-usi-platform.ts ├── app │ ├── (dashboard) │ │ ├── [tenant] │ │ │ ├── (sharing) │ │ │ │ ├── dashboard │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ └── widget │ │ │ │ │ └── page.tsx │ │ │ ├── [...url] │ │ │ │ ├── layout.tsx │ │ │ │ └── page.tsx │ │ │ ├── admin │ │ │ │ ├── corporateidentity │ │ │ │ │ └── page.tsx │ │ │ │ ├── dataplatform │ │ │ │ │ ├── edit │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── general │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── menu │ │ │ │ │ └── page.tsx │ │ │ │ ├── page.tsx │ │ │ │ ├── pages │ │ │ │ │ ├── edit │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── support │ │ │ │ │ └── page.tsx │ │ │ │ ├── tenantadministration │ │ │ │ │ └── page.tsx │ │ │ │ └── widgets │ │ │ │ │ ├── edit │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ ├── page.tsx │ │ │ └── widget │ │ │ │ ├── layout.tsx │ │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── not-found │ │ │ └── page.tsx │ │ └── page.tsx │ ├── MarkerCluster.css │ ├── actions.ts │ ├── custom-hooks │ │ ├── isMobileView.ts │ │ ├── singleState.ts │ │ ├── useAutoScaleFont.ts │ │ └── usePreventMapScroll.ts │ ├── favicon.ico │ ├── globals.css │ ├── quill.css │ ├── react-draft-wysiwyg.css │ └── scrollbar.css ├── assets │ ├── icons │ │ ├── ActionLink.tsx │ │ ├── Climate.tsx │ │ ├── Dry.tsx │ │ ├── Emission.tsx │ │ ├── ForestFire.tsx │ │ ├── Heat.tsx │ │ ├── HumidityHigh.tsx │ │ ├── HumidityMedium.tsx │ │ ├── HumidityNormal.tsx │ │ ├── HumidityPercentage.tsx │ │ ├── Info.tsx │ │ ├── Mobility.tsx │ │ ├── PartlyCloudy.tsx │ │ ├── Pollen.tsx │ │ ├── RemoteSoil.tsx │ │ ├── Snowflake.tsx │ │ ├── SoilMoisture.tsx │ │ ├── Trees.tsx │ │ ├── WaterLevelHigh.tsx │ │ ├── WaterLevelLow.tsx │ │ ├── WaterLevelNormal.tsx │ │ ├── Waves.tsx │ │ └── index.tsx │ └── smartCityLogo.svg ├── components │ ├── DashboardElements │ │ ├── Dashboard.tsx │ │ ├── DashboardPanel.tsx │ │ ├── DashboardTab.tsx │ │ └── DashboardWidget.tsx │ ├── DashboardGeneralInfoMessage.tsx │ ├── DashboardSidebar.tsx │ ├── DashboardSidebarDashboard.tsx │ ├── DashboardSidebarGroup.tsx │ ├── DataSourceDropdownSelection.tsx │ ├── DeleteConfirmationModal.tsx │ ├── EditorComponent.tsx │ ├── Header.tsx │ ├── ManagementSidebar.tsx │ ├── Map │ │ ├── CombinedMap.tsx │ │ ├── Map.tsx │ │ ├── MapFilterModal.tsx │ │ ├── MapLegendModal.tsx │ │ ├── MapModal.tsx │ │ ├── MapUtils.ts │ │ ├── SetViewToBounds.tsx │ │ └── map.css │ ├── MeasurementComponent.tsx │ ├── PaginatedTable.tsx │ ├── Previews │ │ ├── CIDashboardWidgetPreview.tsx │ │ ├── DashboardPanelPreview.tsx │ │ ├── DashboardPreview.tsx │ │ ├── DashboardWidgetPreview.tsx │ │ └── DashboardWidgetWizardPreview.tsx │ ├── RoleSelecton.tsx │ ├── SidebarContent.tsx │ ├── SidebarFooter.tsx │ ├── SidebarItem.tsx │ ├── Table.tsx │ ├── WidgetSelector.tsx │ ├── WidgetSelectorModal.tsx │ ├── Wizards │ │ ├── CIAddLogoWizard.tsx │ │ ├── CIUploadLogoWizard.tsx │ │ ├── ComponentsCiWizard.tsx │ │ ├── CorporateInfoWizard.tsx │ │ ├── DashboardCiWizard.tsx │ │ ├── DashboardWizard.tsx │ │ ├── DataPlatformWizard.tsx │ │ ├── FontCiWizard.tsx │ │ ├── GroupingElementAddDashboardWizard.tsx │ │ ├── GroupingElementWizard.tsx │ │ ├── LayoutCiWizard.tsx │ │ ├── LogoCiWizard.tsx │ │ ├── MenuWizard.tsx │ │ ├── PanelCiWizard.tsx │ │ ├── PanelWizard.tsx │ │ ├── QueryConfigWizard.tsx │ │ ├── QueryConfigWizard │ │ │ ├── QueryConfigWizard.tsx │ │ │ ├── QueryNgsiWizard.tsx │ │ │ ├── QueryOrchideoWizard.tsx │ │ │ └── QueryUsiWizard.tsx │ │ ├── ReportConfigWizard.tsx │ │ ├── SupportRequestWizard.tsx │ │ ├── TabWizard.tsx │ │ ├── TenantWizard.tsx │ │ ├── WidgetCiWizard.tsx │ │ └── WidgetWizard.tsx │ └── dependencies │ │ └── quill.snow.css ├── cypress.config.ts ├── cypress │ ├── e2e │ │ ├── menu.cy.ts │ │ ├── page.cy.ts │ │ ├── panel.cy.ts │ │ └── widget.cy.ts │ └── support │ │ ├── commands.ts │ │ ├── e2e.ts │ │ └── index.d.ts ├── env.example ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── providers │ ├── AuthWrapper.tsx │ ├── AuthenticationProvider.tsx │ ├── CorporateIdentityProvider.tsx │ ├── LoginProvider.tsx │ ├── SnackBarFeedbackProvider.tsx │ └── TanStackQueryProvider.tsx ├── public │ ├── login_background.jpeg │ ├── next.svg │ ├── smart-region-logo.svg │ ├── smartCityLogoPlain.svg │ ├── smartCityLogoWithText.svg │ └── vercel.svg ├── tailwind.config.ts ├── tsconfig.json ├── types │ ├── dashboardModels.ts │ ├── enums.ts │ ├── errors.ts │ ├── groupingElement.ts │ ├── index.ts │ ├── pagination.ts │ ├── queryData.ts │ ├── snackbar.ts │ ├── table.ts │ └── wizard.ts ├── ui │ ├── BlockContainer.tsx │ ├── Buttons │ │ ├── CancelButton.tsx │ │ ├── CollapseButton.tsx │ │ ├── CreateButton.tsx │ │ ├── CreateDashboardElementButton.tsx │ │ ├── DataExportButton.tsx │ │ ├── DeleteButton.tsx │ │ ├── GenericButton.tsx │ │ ├── IconButton.tsx │ │ ├── IntervalButton.tsx │ │ ├── JumpoffButton.tsx │ │ ├── LightDarkToggleButton.tsx │ │ ├── RedirectPageButton.tsx │ │ ├── RefreshButton.tsx │ │ ├── SaveButton.tsx │ │ ├── ShareLinkButton.tsx │ │ └── SmallDataExportButton.tsx │ ├── Charts │ │ ├── BarChart.tsx │ │ ├── ChartMapWrapper.tsx │ │ ├── ColumnChart.tsx │ │ ├── LineChart.tsx │ │ ├── PieChart.tsx │ │ ├── radial180 │ │ │ └── Radial180Chart.tsx │ │ ├── radial360 │ │ │ └── Radial360Chart.tsx │ │ ├── slider │ │ │ └── Slider.tsx │ │ ├── slideroverview │ │ │ ├── SliderHeader.tsx │ │ │ ├── SliderOverview.tsx │ │ │ ├── SliderWithKnobs.tsx │ │ │ └── SliderWithoutKnobs.tsx │ │ └── stageablechart │ │ │ └── StageableChart.tsx │ ├── CheckBox.tsx │ ├── ColorPickerComponent.tsx │ ├── DashboardSelection.tsx │ ├── DashboardValues.tsx │ ├── DropdownSelection.tsx │ ├── FontFamilyDropdown.tsx │ ├── FullSizedLink.tsx │ ├── GeneralInfoMessageModal.tsx │ ├── GroupingElementComponent.tsx │ ├── HeaderLogo.tsx │ ├── HorizontalDivider.tsx │ ├── IFrameComponent.tsx │ ├── IconWithLink.tsx │ ├── Icons │ │ ├── DashboardIcon.tsx │ │ ├── FontAwesomeIcons.tsx │ │ ├── IconSelection.tsx │ │ └── LocalSvgIcons.tsx │ ├── ImageComponent.tsx │ ├── InfoDisplayComponent.tsx │ ├── InfoMessageModal.tsx │ ├── MultipleColorPickers.tsx │ ├── NoDataWarning.tsx │ ├── PageHeadline.tsx │ ├── SearchableDropdown.tsx │ ├── SelectorBox.tsx │ ├── ShareLinkModal.tsx │ ├── SnackBar.tsx │ ├── StaticValuesFields.tsx │ ├── StaticValuesFieldsMapLegend.tsx │ ├── StaticValuesFieldsMapWidgets.tsx │ ├── StaticValuesFieldsRange.tsx │ ├── Table │ │ ├── TableContent.tsx │ │ ├── TableHead.tsx │ │ ├── TablePagination.tsx │ │ └── TableWrapper.tsx │ ├── Tooltip.tsx │ ├── ValueSelectionSlider.tsx │ ├── VerticalDivider.tsx │ ├── VisibilityDisplay.tsx │ ├── WeatherWarning.tsx │ ├── WizardDropdownSelection.tsx │ ├── WizardFileUpload.tsx │ ├── WizardIntegerfield.tsx │ ├── WizardLabel.tsx │ ├── WizardMultipleDropdownSelection.tsx │ ├── WizardNumberfield.tsx │ ├── WizardPasswordTextfield.tsx │ ├── WizardSelectBox.tsx │ ├── WizardSuffixUrlTextfield.tsx │ ├── WizardTextfield.tsx │ └── WizardUrlTextfield.tsx ├── utils │ ├── apiHelper.ts │ ├── chartHelper.ts │ ├── combinedMapDataHelper.ts │ ├── downloadHelper.ts │ ├── dragDropHelper.ts │ ├── enumMapper.ts │ ├── fontUtil.ts │ ├── gridHelper.ts │ ├── mathHelper.ts │ ├── objectHelper.ts │ ├── tabTypeHelper.ts │ ├── tenantHelper.ts │ └── validationHelper.ts └── validators │ ├── queryConfigValidator.ts │ ├── tabValidator.ts │ └── widgetValidator.ts ├── init_insert.sql ├── k8s ├── README-external.adoc ├── README-internal.adoc └── helm │ ├── .helmignore │ ├── Chart.yaml │ ├── ca-issuer-clusterissuer.yaml │ ├── charts │ ├── api-service │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ ├── common │ │ ├── Chart.yaml │ │ └── templates │ │ │ ├── _deployment.yaml │ │ │ ├── _helpers.tpl │ │ │ ├── _ingress.yaml │ │ │ └── _service.yaml │ ├── dashboard-service │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ ├── data-translation-service │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ ├── frontend │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ ├── infopin-service │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ ├── mail-service │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ ├── migrations │ │ ├── Chart.yaml │ │ ├── templates │ │ │ └── job.yaml │ │ └── values.yaml │ ├── ngsi-service │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ ├── orchideo-connect-service │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ ├── report-service │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ ├── static-data-service │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ └── usi-platform-service │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ └── service.yaml │ │ └── values.yaml │ ├── keycloak-config │ ├── production-realm.json │ └── testrealm.json │ ├── postgresql │ └── initDb │ │ └── init.sql │ ├── templates │ ├── configmaps │ │ ├── api-service-configmap.yaml │ │ ├── dashboard-service-configmap.yaml │ │ ├── frontend-configmap.yaml │ │ ├── infopin-service-configmap.yaml │ │ ├── keycloak-config.yaml │ │ ├── mail-service-configmap.yaml │ │ ├── ngsi-service-configmap.yaml │ │ ├── orchideo-connect-service-configmap.yaml │ │ ├── postgresql-connection-configmap.yaml │ │ ├── postgresql-init-configmap.yaml │ │ ├── report-service-configmap.yaml │ │ ├── static-data-configmap.yaml │ │ ├── trusted-ca-configmap.yaml │ │ └── usi-platform-service-configmap.yaml │ └── secrets │ │ ├── frontend-secrets.yaml │ │ ├── keycloak-secrets.yaml │ │ ├── postgresql-connection-secrets.yaml │ │ ├── postgresql-secrets.yaml │ │ └── usi-platform-service-secrets.yaml │ ├── values-edag-dev.yaml │ ├── values-edag-prod.yaml │ ├── values-edag-test.yaml │ ├── values-edag.yaml │ ├── values-hcloud.yaml │ ├── values-infrastructure.yaml │ ├── values-local.yaml │ └── values.yaml ├── keycloak ├── README.adoc └── import │ └── testrealm.json ├── microservices ├── .dockerignore ├── .env.testing ├── .gitignore ├── Dockerfile.api-service ├── Dockerfile.dashboard-service ├── Dockerfile.data-translation-service ├── Dockerfile.infopin-service ├── Dockerfile.mail-service ├── Dockerfile.ngsi-service ├── Dockerfile.orchideo-connect-service ├── Dockerfile.report-service ├── Dockerfile.static-data-service ├── Dockerfile.usi-platform-service ├── README.adoc ├── apps │ ├── api-service │ │ ├── README.adoc │ │ ├── src │ │ │ ├── api.controller.ts │ │ │ ├── api.module.ts │ │ │ ├── api.service.ts │ │ │ ├── auth │ │ │ │ ├── auth.module.ts │ │ │ │ └── auth.service.ts │ │ │ ├── data │ │ │ │ ├── data.module.ts │ │ │ │ └── data.service.ts │ │ │ ├── main.ts │ │ │ ├── organisation-schedule.service.ts │ │ │ ├── organisation │ │ │ │ ├── organisation.module.ts │ │ │ │ └── organisation.service.ts │ │ │ ├── query │ │ │ │ ├── query.module.ts │ │ │ │ └── query.service.ts │ │ │ ├── report │ │ │ │ ├── report.module.ts │ │ │ │ └── report.service.ts │ │ │ ├── schedule.service.ts │ │ │ └── system-user │ │ │ │ ├── README.adoc │ │ │ │ ├── system-user.controller.ts │ │ │ │ ├── system-user.module.ts │ │ │ │ └── system-user.service.ts │ │ └── tsconfig.app.json │ ├── dashboard-service │ │ ├── README.adoc │ │ ├── TEST_COVERAGE.adoc │ │ ├── src │ │ │ ├── auth-data │ │ │ │ ├── auth-data.controller.ts │ │ │ │ ├── auth-data.module.ts │ │ │ │ ├── auth-data.repo.ts │ │ │ │ ├── auth-data.service.ts │ │ │ │ └── test │ │ │ │ │ ├── auth-data.spec.ts │ │ │ │ │ └── test-data.ts │ │ │ ├── corporate-info │ │ │ │ ├── corporate-info-sidebar-logos.repo.ts │ │ │ │ ├── corporate-info.controller.ts │ │ │ │ ├── corporate-info.module.ts │ │ │ │ ├── corporate-info.repo.ts │ │ │ │ ├── corporate-info.service.ts │ │ │ │ ├── corporate-info.template.ts │ │ │ │ └── test │ │ │ │ │ ├── corporate-info.spec.ts │ │ │ │ │ └── test-data.ts │ │ │ ├── dashboard-service.module.ts │ │ │ ├── dashboard-to-tenant │ │ │ │ ├── dashboard-to-tenant.module.ts │ │ │ │ ├── dashboard-to-tenant.repo.ts │ │ │ │ └── dashboard-to-tenant.service.ts │ │ │ ├── dashboard │ │ │ │ ├── dashboard.controller.ts │ │ │ │ ├── dashboard.data.service.ts │ │ │ │ ├── dashboard.module.ts │ │ │ │ ├── dashboard.repo.ts │ │ │ │ ├── dashboard.service.ts │ │ │ │ ├── populate │ │ │ │ │ ├── fiware.types.ts │ │ │ │ │ ├── populate-chart.service.ts │ │ │ │ │ ├── populate-combined-widget.service.ts │ │ │ │ │ ├── populate-map.service.ts │ │ │ │ │ ├── populate-value.service.ts │ │ │ │ │ ├── populate.service.ts │ │ │ │ │ └── populate.util.ts │ │ │ │ └── test │ │ │ │ │ ├── dashboard-with-content.spec.ts │ │ │ │ │ ├── dashboard.spec.ts │ │ │ │ │ └── test-data.ts │ │ │ ├── data-model │ │ │ │ └── fiware-models │ │ │ │ │ ├── charging-station.model.ts │ │ │ │ │ ├── fiware-models.enum.ts │ │ │ │ │ ├── interesting-place.model.ts │ │ │ │ │ ├── parking-info.model.ts │ │ │ │ │ └── swimming-info.model.ts │ │ │ ├── data-source │ │ │ │ ├── data-source.controller.ts │ │ │ │ ├── data-source.module.ts │ │ │ │ ├── data-source.repo.ts │ │ │ │ ├── data-source.service.ts │ │ │ │ └── test │ │ │ │ │ ├── datasource.service.spec.ts │ │ │ │ │ └── test-data.ts │ │ │ ├── general-settings │ │ │ │ ├── general-settings.controller.ts │ │ │ │ ├── general-settings.module.ts │ │ │ │ ├── general-settings.repo.ts │ │ │ │ ├── general-settings.service.ts │ │ │ │ └── test │ │ │ │ │ ├── general-settings.spec.ts │ │ │ │ │ └── test-data.ts │ │ │ ├── grouping-element │ │ │ │ ├── grouping-element.controller.ts │ │ │ │ ├── grouping-element.module.ts │ │ │ │ ├── grouping-element.repo.ts │ │ │ │ ├── grouping-element.service.ts │ │ │ │ └── test │ │ │ │ │ ├── groupingElement.spec.ts │ │ │ │ │ └── test-data.ts │ │ │ ├── logging │ │ │ │ ├── logger.controller.ts │ │ │ │ ├── logger.module.ts │ │ │ │ ├── logger.service.ts │ │ │ │ ├── loggingUtilities.ts │ │ │ │ └── test │ │ │ │ │ ├── logging.spec.ts │ │ │ │ │ └── test-util.ts │ │ │ ├── logo │ │ │ │ ├── logo.controller.ts │ │ │ │ ├── logo.module.ts │ │ │ │ ├── logo.repo.ts │ │ │ │ ├── logo.service.ts │ │ │ │ └── test │ │ │ │ │ ├── logo.spec.ts │ │ │ │ │ └── test-data.ts │ │ │ ├── main.ts │ │ │ ├── panel │ │ │ │ ├── panel.controller.ts │ │ │ │ ├── panel.module.ts │ │ │ │ ├── panel.repo.ts │ │ │ │ ├── panel.service.ts │ │ │ │ └── test │ │ │ │ │ ├── panel.spec.ts │ │ │ │ │ └── test-data.ts │ │ │ ├── query-config │ │ │ │ ├── query-config.controller.ts │ │ │ │ ├── query-config.module.ts │ │ │ │ ├── query-config.repo.ts │ │ │ │ ├── query-config.service.ts │ │ │ │ └── test │ │ │ │ │ ├── queryconfig.spec.ts │ │ │ │ │ └── test-data.ts │ │ │ ├── query │ │ │ │ ├── query.controller.ts │ │ │ │ ├── query.module.ts │ │ │ │ ├── query.repo.ts │ │ │ │ ├── query.service.ts │ │ │ │ └── test │ │ │ │ │ ├── query.spec.ts │ │ │ │ │ └── test-data.ts │ │ │ ├── tab │ │ │ │ ├── tab.controller.ts │ │ │ │ ├── tab.module.ts │ │ │ │ ├── tab.repo.ts │ │ │ │ ├── tab.service.ts │ │ │ │ └── test │ │ │ │ │ ├── tab.spec.ts │ │ │ │ │ └── test-data.ts │ │ │ ├── tenant │ │ │ │ ├── tenant.controller.ts │ │ │ │ ├── tenant.module.ts │ │ │ │ ├── tenant.repo.ts │ │ │ │ ├── tenant.service.ts │ │ │ │ └── test │ │ │ │ │ ├── tenant.spec.ts │ │ │ │ │ └── test-data.ts │ │ │ ├── util │ │ │ │ └── encryption.util.ts │ │ │ ├── validators │ │ │ │ ├── queryConfig-validator.pipe.ts │ │ │ │ ├── tab-validator.pipe.ts │ │ │ │ ├── widget-validator.pipe.ts │ │ │ │ └── widgetWithChildren-validator.pipe.ts │ │ │ ├── widget-to-panel │ │ │ │ ├── widget-to-panel.controller.ts │ │ │ │ ├── widget-to-panel.module.ts │ │ │ │ ├── widget-to-panel.repo.ts │ │ │ │ └── widget-to-panel.service.ts │ │ │ ├── widget-to-tenant │ │ │ │ ├── widget-to-tenant.module.ts │ │ │ │ ├── widget-to-tenant.repo.ts │ │ │ │ └── widget-to-tenant.service.ts │ │ │ └── widget │ │ │ │ ├── test │ │ │ │ ├── test-data.ts │ │ │ │ └── widget.spec.ts │ │ │ │ ├── widget.controller.ts │ │ │ │ ├── widget.data.service.ts │ │ │ │ ├── widget.model.ts │ │ │ │ ├── widget.module.ts │ │ │ │ ├── widget.repo.ts │ │ │ │ └── widget.service.ts │ │ └── tsconfig.app.json │ ├── data-translation-service │ │ ├── src │ │ │ ├── data-translation.module.ts │ │ │ ├── data-translation.repo.ts │ │ │ ├── data-translation.service.ts │ │ │ ├── main.ts │ │ │ ├── populate │ │ │ │ ├── fiware.types.ts │ │ │ │ ├── populate-chart.service.ts │ │ │ │ ├── populate-combined-widget.service.ts │ │ │ │ ├── populate-map.service.ts │ │ │ │ ├── populate-value.service.ts │ │ │ │ └── populate.util.ts │ │ │ └── scheduler.service.ts │ │ └── tsconfig.app.json │ ├── infopin-service │ │ ├── README.adoc │ │ ├── images │ │ │ └── .gitignore │ │ ├── src │ │ │ ├── climate-project │ │ │ │ ├── climate-project.controller.ts │ │ │ │ ├── climate-project.module.ts │ │ │ │ ├── climate-project.service.ts │ │ │ │ └── test │ │ │ │ │ ├── climate-project.spec.ts │ │ │ │ │ ├── fulda-high-water.jpg │ │ │ │ │ └── test-data.ts │ │ │ ├── defect │ │ │ │ ├── defect.controller.ts │ │ │ │ ├── defect.module.ts │ │ │ │ ├── defect.service.ts │ │ │ │ └── test │ │ │ │ │ ├── defect.spec.ts │ │ │ │ │ ├── fulda-high-water.jpg │ │ │ │ │ └── test-data.ts │ │ │ ├── infopin-service.module.ts │ │ │ ├── main.ts │ │ │ ├── multer-config.ts │ │ │ ├── report │ │ │ │ ├── report.controller.ts │ │ │ │ ├── report.module.ts │ │ │ │ ├── report.service.ts │ │ │ │ └── test │ │ │ │ │ ├── fulda-high-water.jpg │ │ │ │ │ ├── report.spec.ts │ │ │ │ │ └── test-data.ts │ │ │ └── utility │ │ │ │ └── RoleUtil.ts │ │ └── tsconfig.app.json │ ├── mail-service │ │ ├── README.adoc │ │ ├── src │ │ │ ├── dto │ │ │ │ └── mail.dto.ts │ │ │ ├── mail.controller.ts │ │ │ ├── mail.module.ts │ │ │ ├── mail.service.ts │ │ │ ├── main.ts │ │ │ └── test │ │ │ │ └── mail.service.spec.ts │ │ └── tsconfig.app.json │ ├── ngsi-service │ │ ├── README.live-data.adoc │ │ ├── src │ │ │ ├── auth │ │ │ │ ├── auth.service.ts │ │ │ │ ├── test │ │ │ │ │ ├── app.spec.ts │ │ │ │ │ ├── jest-e2e.json │ │ │ │ │ └── test-data.ts │ │ │ │ └── token-data.ts │ │ │ ├── data │ │ │ │ ├── data.module.ts │ │ │ │ ├── data.service.ts │ │ │ │ └── test │ │ │ │ │ ├── app.spec.ts │ │ │ │ │ ├── jest-e2e.json │ │ │ │ │ └── test-data.ts │ │ │ ├── fiware-wizard │ │ │ │ ├── fiware-wizard.controller.ts │ │ │ │ ├── fiware-wizard.module.ts │ │ │ │ └── fiware-wizard.service.ts │ │ │ ├── main.ts │ │ │ ├── ngsi.controller.ts │ │ │ ├── ngsi.module.ts │ │ │ ├── ngsi.service.ts │ │ │ ├── query │ │ │ │ ├── query.module.ts │ │ │ │ ├── query.service.ts │ │ │ │ └── test │ │ │ │ │ └── app.spec.ts │ │ │ ├── report │ │ │ │ ├── report.module.ts │ │ │ │ ├── report.service.ts │ │ │ │ └── test │ │ │ │ │ ├── app.spec.ts │ │ │ │ │ └── test-data.ts │ │ │ └── scheduler.service.ts │ │ └── tsconfig.app.json │ ├── orchideo-connect-service │ │ ├── README.adoc │ │ ├── src │ │ │ ├── api.controller.ts │ │ │ ├── api.module.ts │ │ │ ├── api.service.ts │ │ │ ├── auth │ │ │ │ ├── auth.module.ts │ │ │ │ ├── auth.service.ts │ │ │ │ └── test │ │ │ │ │ ├── auth.spec.ts │ │ │ │ │ └── test-data.ts │ │ │ ├── data │ │ │ │ ├── data.module.ts │ │ │ │ └── data.service.ts │ │ │ ├── main.ts │ │ │ ├── organisation-schedule.service.ts │ │ │ ├── organisation │ │ │ │ ├── organisation.module.ts │ │ │ │ └── organisation.service.ts │ │ │ ├── query │ │ │ │ ├── query.module.ts │ │ │ │ └── query.service.ts │ │ │ ├── report │ │ │ │ ├── report.module.ts │ │ │ │ └── report.service.ts │ │ │ ├── schedule.service.ts │ │ │ ├── system-user │ │ │ │ ├── README.adoc │ │ │ │ ├── system-user.controller.ts │ │ │ │ ├── system-user.module.ts │ │ │ │ ├── system-user.service.ts │ │ │ │ └── test │ │ │ │ │ ├── system-user.spec.ts │ │ │ │ │ └── test-data.ts │ │ │ └── test │ │ │ │ └── orchideo-connect.service.spec.ts │ │ └── tsconfig.app.json │ ├── report-service │ │ ├── src │ │ │ ├── config │ │ │ │ ├── config.controller.ts │ │ │ │ ├── config.module.ts │ │ │ │ ├── config.service.ts │ │ │ │ └── config.spec.ts │ │ │ ├── dto │ │ │ │ └── mail.dto.ts │ │ │ ├── mail │ │ │ │ ├── mail.module.ts │ │ │ │ └── mail.service.ts │ │ │ ├── main.ts │ │ │ ├── query │ │ │ │ ├── query.module.ts │ │ │ │ └── query.service.ts │ │ │ ├── report.module.ts │ │ │ ├── report.service.ts │ │ │ ├── scheduler.service.ts │ │ │ └── test │ │ │ │ ├── report-service.spec.ts │ │ │ │ └── test-data.ts │ │ └── tsconfig.app.json │ ├── static-data-service │ │ ├── src │ │ │ ├── data │ │ │ │ ├── data.module.ts │ │ │ │ └── data.service.ts │ │ │ ├── main.ts │ │ │ ├── query │ │ │ │ ├── query.module.ts │ │ │ │ └── query.service.ts │ │ │ ├── schedule.service.ts │ │ │ ├── static-data.module.ts │ │ │ └── transformation │ │ │ │ ├── test │ │ │ │ ├── test-data.ts │ │ │ │ └── transformation.spec.ts │ │ │ │ ├── transformation.module.ts │ │ │ │ └── transformation.service.ts │ │ └── tsconfig.app.json │ ├── test │ │ ├── database-operations │ │ │ ├── database.spec.ts │ │ │ └── prepare-database.ts │ │ ├── index.e2e-spec.ts │ │ ├── jest-e2e.json │ │ └── jwt-token-util.ts │ └── usi-platform-service │ │ ├── README.adoc │ │ ├── src │ │ ├── auth │ │ │ ├── auth.controller.ts │ │ │ ├── auth.module.ts │ │ │ └── auth.service.ts │ │ ├── main.ts │ │ ├── query-config │ │ │ ├── query-config.module.ts │ │ │ └── query-config.service.ts │ │ ├── usi-platform.controller.ts │ │ ├── usi-platform.module.ts │ │ └── usi-platform.service.ts │ │ └── tsconfig.app.json ├── libs │ ├── auth-helper │ │ ├── src │ │ │ ├── AuthGuard.ts │ │ │ ├── PublicDecorator.ts │ │ │ ├── auth-helper.middleware.ts │ │ │ ├── auth-helper.utility.ts │ │ │ ├── index.ts │ │ │ └── right-management │ │ │ │ └── right-management.service.ts │ │ └── tsconfig.lib.json │ └── postgres-db │ │ ├── src │ │ ├── index.ts │ │ ├── postgres-db.module.ts │ │ ├── providers │ │ │ └── db.provider.ts │ │ └── schemas │ │ │ ├── auth-data.schema.ts │ │ │ ├── climate-project.schema.ts │ │ │ ├── corporate-info-sidebar-logos.schema.ts │ │ │ ├── corporate-info.schema.ts │ │ │ ├── dashboard-to-tenant.schema.ts │ │ │ ├── dashboard.grouping-element.schema.ts │ │ │ ├── dashboard.panel.schema.ts │ │ │ ├── dashboard.schema.ts │ │ │ ├── dashboard.tab.schema.ts │ │ │ ├── dashboard.widget-to-panel.schema.ts │ │ │ ├── dashboard.widget.schema.ts │ │ │ ├── data-model.schema.ts │ │ │ ├── data-source.schema.ts │ │ │ ├── defect.schema.ts │ │ │ ├── enums.schema.ts │ │ │ ├── general-settings.schema.ts │ │ │ ├── index.ts │ │ │ ├── logo.schema.ts │ │ │ ├── query-config.schema.ts │ │ │ ├── query.schema.ts │ │ │ ├── report.schema.ts │ │ │ ├── sensor-report.schema.ts │ │ │ ├── tenant.schema.ts │ │ │ ├── tenant.system-user.schema.ts │ │ │ └── widget-to-tenant.schema.ts │ │ └── tsconfig.lib.json ├── nest-cli.json ├── package-lock.json ├── package.json ├── tsconfig.build.json └── tsconfig.json ├── package.json └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/.env -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile.migrations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/Dockerfile.migrations -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/LICENCE -------------------------------------------------------------------------------- /README-Env-Variables.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/README-Env-Variables.adoc -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/README.adoc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /database/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/README.adoc -------------------------------------------------------------------------------- /database/datamodels/LD-1e2a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/datamodels/LD-1e2a.json -------------------------------------------------------------------------------- /database/datamodels/LD_1e1a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/datamodels/LD_1e1a.json -------------------------------------------------------------------------------- /database/datamodels/map_format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/datamodels/map_format.json -------------------------------------------------------------------------------- /database/datamodels/multi_entity_multi_attributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/datamodels/multi_entity_multi_attributes.json -------------------------------------------------------------------------------- /database/datamodels/multi_entity_single_attributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/datamodels/multi_entity_single_attributes.json -------------------------------------------------------------------------------- /database/datamodels/singe_entity_multi_attributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/datamodels/singe_entity_multi_attributes.json -------------------------------------------------------------------------------- /database/datamodels/singe_entity_single_attributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/datamodels/singe_entity_single_attributes.json -------------------------------------------------------------------------------- /database/drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/drizzle.config.ts -------------------------------------------------------------------------------- /database/migrations/generated/0000_chief_payback_0.7.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/0000_chief_payback_0.7.2.sql -------------------------------------------------------------------------------- /database/migrations/generated/0001_nifty_rictor_0.7.2_to_0.8.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/0001_nifty_rictor_0.7.2_to_0.8.0.sql -------------------------------------------------------------------------------- /database/migrations/generated/0002_powerful_tarantula_0.8.0_to_0.8.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/0002_powerful_tarantula_0.8.0_to_0.8.3.sql -------------------------------------------------------------------------------- /database/migrations/generated/0003_light_saracen_0.8.3_to_0.8.8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/0003_light_saracen_0.8.3_to_0.8.8.sql -------------------------------------------------------------------------------- /database/migrations/generated/0004_lively_tenebrous_0.8.8_to_0.8.10.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "panel" ADD COLUMN IF NOT EXISTS "info_msg" text; 2 | -------------------------------------------------------------------------------- /database/migrations/generated/0005_moaning_betty_ross_0.9.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/0005_moaning_betty_ross_0.9.0.sql -------------------------------------------------------------------------------- /database/migrations/generated/0006_short_peter_quill_0.9.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/0006_short_peter_quill_0.9.1.sql -------------------------------------------------------------------------------- /database/migrations/generated/0007_sour_mephisto_0.10.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/0007_sour_mephisto_0.10.0.sql -------------------------------------------------------------------------------- /database/migrations/generated/0008_wonderful_omega_red_0.10.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/0008_wonderful_omega_red_0.10.1.sql -------------------------------------------------------------------------------- /database/migrations/generated/0009_wonderful_fat_cobra_0.11.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/0009_wonderful_fat_cobra_0.11.0.sql -------------------------------------------------------------------------------- /database/migrations/generated/0010_slippery_santa_claus_0.11.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/0010_slippery_santa_claus_0.11.2.sql -------------------------------------------------------------------------------- /database/migrations/generated/0011_bitter_loa_0.12.0a.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/0011_bitter_loa_0.12.0a.sql -------------------------------------------------------------------------------- /database/migrations/generated/0012_peaceful_galactus_0.12.0b.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/0012_peaceful_galactus_0.12.0b.sql -------------------------------------------------------------------------------- /database/migrations/generated/0013_omniscient_shotgun_0.15.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/0013_omniscient_shotgun_0.15.0.sql -------------------------------------------------------------------------------- /database/migrations/generated/0014_thick_warstar_0.15.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/0014_thick_warstar_0.15.1.sql -------------------------------------------------------------------------------- /database/migrations/generated/0015_sudden_nightmare_0.16.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/0015_sudden_nightmare_0.16.0.sql -------------------------------------------------------------------------------- /database/migrations/generated/0016_nasty_the_renegades_0.17.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/0016_nasty_the_renegades_0.17.0.sql -------------------------------------------------------------------------------- /database/migrations/generated/0017_thankful_yellowjacket_0.17.5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/0017_thankful_yellowjacket_0.17.5.sql -------------------------------------------------------------------------------- /database/migrations/generated/0018_past_deadpool_0.18.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/0018_past_deadpool_0.18.0.sql -------------------------------------------------------------------------------- /database/migrations/generated/0019_needy_energizer_0.18.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/0019_needy_energizer_0.18.3.sql -------------------------------------------------------------------------------- /database/migrations/generated/0020_cute_peter_parker_0.19.11.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "general_settings" ADD COLUMN IF NOT EXISTS "disclaimer" text; 2 | -------------------------------------------------------------------------------- /database/migrations/generated/0021_noisy_frightful_four_0.20.0.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "tab" ADD COLUMN IF NOT EXISTS "is_layout_vertical" boolean; 2 | -------------------------------------------------------------------------------- /database/migrations/generated/0022_abnormal_dormammu_0.21.1.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "corporate_info" ADD COLUMN IF NOT EXISTS "menu_hover_font_color" text; 2 | -------------------------------------------------------------------------------- /database/migrations/generated/0023_long_energizer_0.22.0.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "tab" ADD COLUMN IF NOT EXISTS "chart_allow_image_download" boolean; 2 | -------------------------------------------------------------------------------- /database/migrations/generated/0024_needy_justice_0.22.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/0024_needy_justice_0.22.1.sql -------------------------------------------------------------------------------- /database/migrations/generated/0025_fair_crusher_hogan_0.22.3.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "tab" ADD COLUMN IF NOT EXISTS "chart_pie_radius" smallint; 2 | -------------------------------------------------------------------------------- /database/migrations/generated/0026_ancient_chat_0.23.0.sql: -------------------------------------------------------------------------------- 1 | ALTER TYPE "auth_data_type" ADD VALUE IF NOT EXISTS 'usi'; 2 | -------------------------------------------------------------------------------- /database/migrations/generated/0027_fine_terror_0.23.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/0027_fine_terror_0.23.1.sql -------------------------------------------------------------------------------- /database/migrations/generated/0028_bouncy_frightful_four_0.24.0.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "dashboard" ADD COLUMN IF NOT EXISTS "allow_share" boolean; 2 | -------------------------------------------------------------------------------- /database/migrations/generated/0029_abandoned_zombie_0.24.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/0029_abandoned_zombie_0.24.1.sql -------------------------------------------------------------------------------- /database/migrations/generated/0030_useful_abomination_1.0.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/0030_useful_abomination_1.0.0.sql -------------------------------------------------------------------------------- /database/migrations/generated/meta/0000_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0000_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0001_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0001_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0002_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0002_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0003_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0003_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0004_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0004_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0005_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0005_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0006_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0006_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0007_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0007_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0008_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0008_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0009_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0009_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0010_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0010_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0011_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0011_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0012_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0012_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0013_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0013_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0014_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0014_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0015_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0015_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0016_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0016_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0017_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0017_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0018_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0018_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0019_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0019_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0020_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0020_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0021_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0021_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0022_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0022_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0023_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0023_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0024_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0024_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0025_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0025_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0026_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0026_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0027_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0027_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0028_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0028_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0029_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0029_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/0030_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/0030_snapshot.json -------------------------------------------------------------------------------- /database/migrations/generated/meta/_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/generated/meta/_journal.json -------------------------------------------------------------------------------- /database/migrations/migrate.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/database/migrations/migrate.mjs -------------------------------------------------------------------------------- /docker-compose.local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/docker-compose.local.yml -------------------------------------------------------------------------------- /docs/images/SC_Dashboard_Extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/docs/images/SC_Dashboard_Extended.png -------------------------------------------------------------------------------- /docs/project-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/docs/project-dependencies.md -------------------------------------------------------------------------------- /docs/technical-documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/docs/technical-documentation.md -------------------------------------------------------------------------------- /docs/wizards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/docs/wizards.md -------------------------------------------------------------------------------- /env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/env.example -------------------------------------------------------------------------------- /frontend/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/.dockerignore -------------------------------------------------------------------------------- /frontend/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/.env -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/Dockerfile.frontend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/Dockerfile.frontend -------------------------------------------------------------------------------- /frontend/Dockerfile.frontend-with-basepath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/Dockerfile.frontend-with-basepath -------------------------------------------------------------------------------- /frontend/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/README.adoc -------------------------------------------------------------------------------- /frontend/api/authData-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/api/authData-service.ts -------------------------------------------------------------------------------- /frontend/api/corporateInfo-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/api/corporateInfo-service.ts -------------------------------------------------------------------------------- /frontend/api/dashboard-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/api/dashboard-service.ts -------------------------------------------------------------------------------- /frontend/api/dataSource-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/api/dataSource-service.ts -------------------------------------------------------------------------------- /frontend/api/general-settings-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/api/general-settings-service.ts -------------------------------------------------------------------------------- /frontend/api/logo-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/api/logo-service.ts -------------------------------------------------------------------------------- /frontend/api/mail-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/api/mail-service.ts -------------------------------------------------------------------------------- /frontend/api/menu-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/api/menu-service.ts -------------------------------------------------------------------------------- /frontend/api/panel-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/api/panel-service.ts -------------------------------------------------------------------------------- /frontend/api/report-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/api/report-service.ts -------------------------------------------------------------------------------- /frontend/api/tab-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/api/tab-service.ts -------------------------------------------------------------------------------- /frontend/api/tenant-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/api/tenant-service.ts -------------------------------------------------------------------------------- /frontend/api/widget-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/api/widget-service.ts -------------------------------------------------------------------------------- /frontend/api/widgetPanelRelation-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/api/widgetPanelRelation-service.ts -------------------------------------------------------------------------------- /frontend/api/wizard-service-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/api/wizard-service-api.ts -------------------------------------------------------------------------------- /frontend/api/wizard-service-fiware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/api/wizard-service-fiware.ts -------------------------------------------------------------------------------- /frontend/api/wizard-service-usi-platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/api/wizard-service-usi-platform.ts -------------------------------------------------------------------------------- /frontend/app/(dashboard)/[tenant]/(sharing)/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/(dashboard)/[tenant]/(sharing)/dashboard/page.tsx -------------------------------------------------------------------------------- /frontend/app/(dashboard)/[tenant]/(sharing)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/(dashboard)/[tenant]/(sharing)/layout.tsx -------------------------------------------------------------------------------- /frontend/app/(dashboard)/[tenant]/(sharing)/widget/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/(dashboard)/[tenant]/(sharing)/widget/page.tsx -------------------------------------------------------------------------------- /frontend/app/(dashboard)/[tenant]/[...url]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/(dashboard)/[tenant]/[...url]/layout.tsx -------------------------------------------------------------------------------- /frontend/app/(dashboard)/[tenant]/[...url]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/(dashboard)/[tenant]/[...url]/page.tsx -------------------------------------------------------------------------------- /frontend/app/(dashboard)/[tenant]/admin/corporateidentity/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/(dashboard)/[tenant]/admin/corporateidentity/page.tsx -------------------------------------------------------------------------------- /frontend/app/(dashboard)/[tenant]/admin/dataplatform/edit/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/(dashboard)/[tenant]/admin/dataplatform/edit/page.tsx -------------------------------------------------------------------------------- /frontend/app/(dashboard)/[tenant]/admin/dataplatform/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/(dashboard)/[tenant]/admin/dataplatform/page.tsx -------------------------------------------------------------------------------- /frontend/app/(dashboard)/[tenant]/admin/general/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/(dashboard)/[tenant]/admin/general/page.tsx -------------------------------------------------------------------------------- /frontend/app/(dashboard)/[tenant]/admin/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/(dashboard)/[tenant]/admin/layout.tsx -------------------------------------------------------------------------------- /frontend/app/(dashboard)/[tenant]/admin/menu/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/(dashboard)/[tenant]/admin/menu/page.tsx -------------------------------------------------------------------------------- /frontend/app/(dashboard)/[tenant]/admin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/(dashboard)/[tenant]/admin/page.tsx -------------------------------------------------------------------------------- /frontend/app/(dashboard)/[tenant]/admin/pages/edit/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/(dashboard)/[tenant]/admin/pages/edit/page.tsx -------------------------------------------------------------------------------- /frontend/app/(dashboard)/[tenant]/admin/pages/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/(dashboard)/[tenant]/admin/pages/page.tsx -------------------------------------------------------------------------------- /frontend/app/(dashboard)/[tenant]/admin/support/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/(dashboard)/[tenant]/admin/support/page.tsx -------------------------------------------------------------------------------- /frontend/app/(dashboard)/[tenant]/admin/tenantadministration/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/(dashboard)/[tenant]/admin/tenantadministration/page.tsx -------------------------------------------------------------------------------- /frontend/app/(dashboard)/[tenant]/admin/widgets/edit/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/(dashboard)/[tenant]/admin/widgets/edit/page.tsx -------------------------------------------------------------------------------- /frontend/app/(dashboard)/[tenant]/admin/widgets/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/(dashboard)/[tenant]/admin/widgets/page.tsx -------------------------------------------------------------------------------- /frontend/app/(dashboard)/[tenant]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/(dashboard)/[tenant]/page.tsx -------------------------------------------------------------------------------- /frontend/app/(dashboard)/[tenant]/widget/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/(dashboard)/[tenant]/widget/layout.tsx -------------------------------------------------------------------------------- /frontend/app/(dashboard)/[tenant]/widget/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/(dashboard)/[tenant]/widget/page.tsx -------------------------------------------------------------------------------- /frontend/app/(dashboard)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/(dashboard)/layout.tsx -------------------------------------------------------------------------------- /frontend/app/(dashboard)/not-found/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/(dashboard)/not-found/page.tsx -------------------------------------------------------------------------------- /frontend/app/(dashboard)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/(dashboard)/page.tsx -------------------------------------------------------------------------------- /frontend/app/MarkerCluster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/MarkerCluster.css -------------------------------------------------------------------------------- /frontend/app/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/actions.ts -------------------------------------------------------------------------------- /frontend/app/custom-hooks/isMobileView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/custom-hooks/isMobileView.ts -------------------------------------------------------------------------------- /frontend/app/custom-hooks/singleState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/custom-hooks/singleState.ts -------------------------------------------------------------------------------- /frontend/app/custom-hooks/useAutoScaleFont.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/custom-hooks/useAutoScaleFont.ts -------------------------------------------------------------------------------- /frontend/app/custom-hooks/usePreventMapScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/custom-hooks/usePreventMapScroll.ts -------------------------------------------------------------------------------- /frontend/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/favicon.ico -------------------------------------------------------------------------------- /frontend/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/globals.css -------------------------------------------------------------------------------- /frontend/app/quill.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/quill.css -------------------------------------------------------------------------------- /frontend/app/react-draft-wysiwyg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/react-draft-wysiwyg.css -------------------------------------------------------------------------------- /frontend/app/scrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/app/scrollbar.css -------------------------------------------------------------------------------- /frontend/assets/icons/ActionLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/assets/icons/ActionLink.tsx -------------------------------------------------------------------------------- /frontend/assets/icons/Climate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/assets/icons/Climate.tsx -------------------------------------------------------------------------------- /frontend/assets/icons/Dry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/assets/icons/Dry.tsx -------------------------------------------------------------------------------- /frontend/assets/icons/Emission.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/assets/icons/Emission.tsx -------------------------------------------------------------------------------- /frontend/assets/icons/ForestFire.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/assets/icons/ForestFire.tsx -------------------------------------------------------------------------------- /frontend/assets/icons/Heat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/assets/icons/Heat.tsx -------------------------------------------------------------------------------- /frontend/assets/icons/HumidityHigh.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/assets/icons/HumidityHigh.tsx -------------------------------------------------------------------------------- /frontend/assets/icons/HumidityMedium.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/assets/icons/HumidityMedium.tsx -------------------------------------------------------------------------------- /frontend/assets/icons/HumidityNormal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/assets/icons/HumidityNormal.tsx -------------------------------------------------------------------------------- /frontend/assets/icons/HumidityPercentage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/assets/icons/HumidityPercentage.tsx -------------------------------------------------------------------------------- /frontend/assets/icons/Info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/assets/icons/Info.tsx -------------------------------------------------------------------------------- /frontend/assets/icons/Mobility.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/assets/icons/Mobility.tsx -------------------------------------------------------------------------------- /frontend/assets/icons/PartlyCloudy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/assets/icons/PartlyCloudy.tsx -------------------------------------------------------------------------------- /frontend/assets/icons/Pollen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/assets/icons/Pollen.tsx -------------------------------------------------------------------------------- /frontend/assets/icons/RemoteSoil.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/assets/icons/RemoteSoil.tsx -------------------------------------------------------------------------------- /frontend/assets/icons/Snowflake.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/assets/icons/Snowflake.tsx -------------------------------------------------------------------------------- /frontend/assets/icons/SoilMoisture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/assets/icons/SoilMoisture.tsx -------------------------------------------------------------------------------- /frontend/assets/icons/Trees.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/assets/icons/Trees.tsx -------------------------------------------------------------------------------- /frontend/assets/icons/WaterLevelHigh.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/assets/icons/WaterLevelHigh.tsx -------------------------------------------------------------------------------- /frontend/assets/icons/WaterLevelLow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/assets/icons/WaterLevelLow.tsx -------------------------------------------------------------------------------- /frontend/assets/icons/WaterLevelNormal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/assets/icons/WaterLevelNormal.tsx -------------------------------------------------------------------------------- /frontend/assets/icons/Waves.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/assets/icons/Waves.tsx -------------------------------------------------------------------------------- /frontend/assets/icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/assets/icons/index.tsx -------------------------------------------------------------------------------- /frontend/assets/smartCityLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/assets/smartCityLogo.svg -------------------------------------------------------------------------------- /frontend/components/DashboardElements/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/DashboardElements/Dashboard.tsx -------------------------------------------------------------------------------- /frontend/components/DashboardElements/DashboardPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/DashboardElements/DashboardPanel.tsx -------------------------------------------------------------------------------- /frontend/components/DashboardElements/DashboardTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/DashboardElements/DashboardTab.tsx -------------------------------------------------------------------------------- /frontend/components/DashboardElements/DashboardWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/DashboardElements/DashboardWidget.tsx -------------------------------------------------------------------------------- /frontend/components/DashboardGeneralInfoMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/DashboardGeneralInfoMessage.tsx -------------------------------------------------------------------------------- /frontend/components/DashboardSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/DashboardSidebar.tsx -------------------------------------------------------------------------------- /frontend/components/DashboardSidebarDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/DashboardSidebarDashboard.tsx -------------------------------------------------------------------------------- /frontend/components/DashboardSidebarGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/DashboardSidebarGroup.tsx -------------------------------------------------------------------------------- /frontend/components/DataSourceDropdownSelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/DataSourceDropdownSelection.tsx -------------------------------------------------------------------------------- /frontend/components/DeleteConfirmationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/DeleteConfirmationModal.tsx -------------------------------------------------------------------------------- /frontend/components/EditorComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/EditorComponent.tsx -------------------------------------------------------------------------------- /frontend/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Header.tsx -------------------------------------------------------------------------------- /frontend/components/ManagementSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/ManagementSidebar.tsx -------------------------------------------------------------------------------- /frontend/components/Map/CombinedMap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Map/CombinedMap.tsx -------------------------------------------------------------------------------- /frontend/components/Map/Map.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Map/Map.tsx -------------------------------------------------------------------------------- /frontend/components/Map/MapFilterModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Map/MapFilterModal.tsx -------------------------------------------------------------------------------- /frontend/components/Map/MapLegendModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Map/MapLegendModal.tsx -------------------------------------------------------------------------------- /frontend/components/Map/MapModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Map/MapModal.tsx -------------------------------------------------------------------------------- /frontend/components/Map/MapUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Map/MapUtils.ts -------------------------------------------------------------------------------- /frontend/components/Map/SetViewToBounds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Map/SetViewToBounds.tsx -------------------------------------------------------------------------------- /frontend/components/Map/map.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Map/map.css -------------------------------------------------------------------------------- /frontend/components/MeasurementComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/MeasurementComponent.tsx -------------------------------------------------------------------------------- /frontend/components/PaginatedTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/PaginatedTable.tsx -------------------------------------------------------------------------------- /frontend/components/Previews/CIDashboardWidgetPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Previews/CIDashboardWidgetPreview.tsx -------------------------------------------------------------------------------- /frontend/components/Previews/DashboardPanelPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Previews/DashboardPanelPreview.tsx -------------------------------------------------------------------------------- /frontend/components/Previews/DashboardPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Previews/DashboardPreview.tsx -------------------------------------------------------------------------------- /frontend/components/Previews/DashboardWidgetPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Previews/DashboardWidgetPreview.tsx -------------------------------------------------------------------------------- /frontend/components/Previews/DashboardWidgetWizardPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Previews/DashboardWidgetWizardPreview.tsx -------------------------------------------------------------------------------- /frontend/components/RoleSelecton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/RoleSelecton.tsx -------------------------------------------------------------------------------- /frontend/components/SidebarContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/SidebarContent.tsx -------------------------------------------------------------------------------- /frontend/components/SidebarFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/SidebarFooter.tsx -------------------------------------------------------------------------------- /frontend/components/SidebarItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/SidebarItem.tsx -------------------------------------------------------------------------------- /frontend/components/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Table.tsx -------------------------------------------------------------------------------- /frontend/components/WidgetSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/WidgetSelector.tsx -------------------------------------------------------------------------------- /frontend/components/WidgetSelectorModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/WidgetSelectorModal.tsx -------------------------------------------------------------------------------- /frontend/components/Wizards/CIAddLogoWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Wizards/CIAddLogoWizard.tsx -------------------------------------------------------------------------------- /frontend/components/Wizards/CIUploadLogoWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Wizards/CIUploadLogoWizard.tsx -------------------------------------------------------------------------------- /frontend/components/Wizards/ComponentsCiWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Wizards/ComponentsCiWizard.tsx -------------------------------------------------------------------------------- /frontend/components/Wizards/CorporateInfoWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Wizards/CorporateInfoWizard.tsx -------------------------------------------------------------------------------- /frontend/components/Wizards/DashboardCiWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Wizards/DashboardCiWizard.tsx -------------------------------------------------------------------------------- /frontend/components/Wizards/DashboardWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Wizards/DashboardWizard.tsx -------------------------------------------------------------------------------- /frontend/components/Wizards/DataPlatformWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Wizards/DataPlatformWizard.tsx -------------------------------------------------------------------------------- /frontend/components/Wizards/FontCiWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Wizards/FontCiWizard.tsx -------------------------------------------------------------------------------- /frontend/components/Wizards/GroupingElementAddDashboardWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Wizards/GroupingElementAddDashboardWizard.tsx -------------------------------------------------------------------------------- /frontend/components/Wizards/GroupingElementWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Wizards/GroupingElementWizard.tsx -------------------------------------------------------------------------------- /frontend/components/Wizards/LayoutCiWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Wizards/LayoutCiWizard.tsx -------------------------------------------------------------------------------- /frontend/components/Wizards/LogoCiWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Wizards/LogoCiWizard.tsx -------------------------------------------------------------------------------- /frontend/components/Wizards/MenuWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Wizards/MenuWizard.tsx -------------------------------------------------------------------------------- /frontend/components/Wizards/PanelCiWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Wizards/PanelCiWizard.tsx -------------------------------------------------------------------------------- /frontend/components/Wizards/PanelWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Wizards/PanelWizard.tsx -------------------------------------------------------------------------------- /frontend/components/Wizards/QueryConfigWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Wizards/QueryConfigWizard.tsx -------------------------------------------------------------------------------- /frontend/components/Wizards/QueryConfigWizard/QueryConfigWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Wizards/QueryConfigWizard/QueryConfigWizard.tsx -------------------------------------------------------------------------------- /frontend/components/Wizards/QueryConfigWizard/QueryNgsiWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Wizards/QueryConfigWizard/QueryNgsiWizard.tsx -------------------------------------------------------------------------------- /frontend/components/Wizards/QueryConfigWizard/QueryOrchideoWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Wizards/QueryConfigWizard/QueryOrchideoWizard.tsx -------------------------------------------------------------------------------- /frontend/components/Wizards/QueryConfigWizard/QueryUsiWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Wizards/QueryConfigWizard/QueryUsiWizard.tsx -------------------------------------------------------------------------------- /frontend/components/Wizards/ReportConfigWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Wizards/ReportConfigWizard.tsx -------------------------------------------------------------------------------- /frontend/components/Wizards/SupportRequestWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Wizards/SupportRequestWizard.tsx -------------------------------------------------------------------------------- /frontend/components/Wizards/TabWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Wizards/TabWizard.tsx -------------------------------------------------------------------------------- /frontend/components/Wizards/TenantWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Wizards/TenantWizard.tsx -------------------------------------------------------------------------------- /frontend/components/Wizards/WidgetCiWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Wizards/WidgetCiWizard.tsx -------------------------------------------------------------------------------- /frontend/components/Wizards/WidgetWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/Wizards/WidgetWizard.tsx -------------------------------------------------------------------------------- /frontend/components/dependencies/quill.snow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/components/dependencies/quill.snow.css -------------------------------------------------------------------------------- /frontend/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/cypress.config.ts -------------------------------------------------------------------------------- /frontend/cypress/e2e/menu.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/cypress/e2e/menu.cy.ts -------------------------------------------------------------------------------- /frontend/cypress/e2e/page.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/cypress/e2e/page.cy.ts -------------------------------------------------------------------------------- /frontend/cypress/e2e/panel.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/cypress/e2e/panel.cy.ts -------------------------------------------------------------------------------- /frontend/cypress/e2e/widget.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/cypress/e2e/widget.cy.ts -------------------------------------------------------------------------------- /frontend/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/cypress/support/commands.ts -------------------------------------------------------------------------------- /frontend/cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/cypress/support/e2e.ts -------------------------------------------------------------------------------- /frontend/cypress/support/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/cypress/support/index.d.ts -------------------------------------------------------------------------------- /frontend/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/env.example -------------------------------------------------------------------------------- /frontend/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/next.config.js -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/providers/AuthWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/providers/AuthWrapper.tsx -------------------------------------------------------------------------------- /frontend/providers/AuthenticationProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/providers/AuthenticationProvider.tsx -------------------------------------------------------------------------------- /frontend/providers/CorporateIdentityProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/providers/CorporateIdentityProvider.tsx -------------------------------------------------------------------------------- /frontend/providers/LoginProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/providers/LoginProvider.tsx -------------------------------------------------------------------------------- /frontend/providers/SnackBarFeedbackProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/providers/SnackBarFeedbackProvider.tsx -------------------------------------------------------------------------------- /frontend/providers/TanStackQueryProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/providers/TanStackQueryProvider.tsx -------------------------------------------------------------------------------- /frontend/public/login_background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/public/login_background.jpeg -------------------------------------------------------------------------------- /frontend/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/public/next.svg -------------------------------------------------------------------------------- /frontend/public/smart-region-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/public/smart-region-logo.svg -------------------------------------------------------------------------------- /frontend/public/smartCityLogoPlain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/public/smartCityLogoPlain.svg -------------------------------------------------------------------------------- /frontend/public/smartCityLogoWithText.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/public/smartCityLogoWithText.svg -------------------------------------------------------------------------------- /frontend/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/public/vercel.svg -------------------------------------------------------------------------------- /frontend/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/tailwind.config.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/types/dashboardModels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/types/dashboardModels.ts -------------------------------------------------------------------------------- /frontend/types/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/types/enums.ts -------------------------------------------------------------------------------- /frontend/types/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/types/errors.ts -------------------------------------------------------------------------------- /frontend/types/groupingElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/types/groupingElement.ts -------------------------------------------------------------------------------- /frontend/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/types/index.ts -------------------------------------------------------------------------------- /frontend/types/pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/types/pagination.ts -------------------------------------------------------------------------------- /frontend/types/queryData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/types/queryData.ts -------------------------------------------------------------------------------- /frontend/types/snackbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/types/snackbar.ts -------------------------------------------------------------------------------- /frontend/types/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/types/table.ts -------------------------------------------------------------------------------- /frontend/types/wizard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/types/wizard.ts -------------------------------------------------------------------------------- /frontend/ui/BlockContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/BlockContainer.tsx -------------------------------------------------------------------------------- /frontend/ui/Buttons/CancelButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Buttons/CancelButton.tsx -------------------------------------------------------------------------------- /frontend/ui/Buttons/CollapseButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Buttons/CollapseButton.tsx -------------------------------------------------------------------------------- /frontend/ui/Buttons/CreateButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Buttons/CreateButton.tsx -------------------------------------------------------------------------------- /frontend/ui/Buttons/CreateDashboardElementButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Buttons/CreateDashboardElementButton.tsx -------------------------------------------------------------------------------- /frontend/ui/Buttons/DataExportButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Buttons/DataExportButton.tsx -------------------------------------------------------------------------------- /frontend/ui/Buttons/DeleteButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Buttons/DeleteButton.tsx -------------------------------------------------------------------------------- /frontend/ui/Buttons/GenericButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Buttons/GenericButton.tsx -------------------------------------------------------------------------------- /frontend/ui/Buttons/IconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Buttons/IconButton.tsx -------------------------------------------------------------------------------- /frontend/ui/Buttons/IntervalButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Buttons/IntervalButton.tsx -------------------------------------------------------------------------------- /frontend/ui/Buttons/JumpoffButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Buttons/JumpoffButton.tsx -------------------------------------------------------------------------------- /frontend/ui/Buttons/LightDarkToggleButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Buttons/LightDarkToggleButton.tsx -------------------------------------------------------------------------------- /frontend/ui/Buttons/RedirectPageButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Buttons/RedirectPageButton.tsx -------------------------------------------------------------------------------- /frontend/ui/Buttons/RefreshButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Buttons/RefreshButton.tsx -------------------------------------------------------------------------------- /frontend/ui/Buttons/SaveButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Buttons/SaveButton.tsx -------------------------------------------------------------------------------- /frontend/ui/Buttons/ShareLinkButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Buttons/ShareLinkButton.tsx -------------------------------------------------------------------------------- /frontend/ui/Buttons/SmallDataExportButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Buttons/SmallDataExportButton.tsx -------------------------------------------------------------------------------- /frontend/ui/Charts/BarChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Charts/BarChart.tsx -------------------------------------------------------------------------------- /frontend/ui/Charts/ChartMapWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Charts/ChartMapWrapper.tsx -------------------------------------------------------------------------------- /frontend/ui/Charts/ColumnChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Charts/ColumnChart.tsx -------------------------------------------------------------------------------- /frontend/ui/Charts/LineChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Charts/LineChart.tsx -------------------------------------------------------------------------------- /frontend/ui/Charts/PieChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Charts/PieChart.tsx -------------------------------------------------------------------------------- /frontend/ui/Charts/radial180/Radial180Chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Charts/radial180/Radial180Chart.tsx -------------------------------------------------------------------------------- /frontend/ui/Charts/radial360/Radial360Chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Charts/radial360/Radial360Chart.tsx -------------------------------------------------------------------------------- /frontend/ui/Charts/slider/Slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Charts/slider/Slider.tsx -------------------------------------------------------------------------------- /frontend/ui/Charts/slideroverview/SliderHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Charts/slideroverview/SliderHeader.tsx -------------------------------------------------------------------------------- /frontend/ui/Charts/slideroverview/SliderOverview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Charts/slideroverview/SliderOverview.tsx -------------------------------------------------------------------------------- /frontend/ui/Charts/slideroverview/SliderWithKnobs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Charts/slideroverview/SliderWithKnobs.tsx -------------------------------------------------------------------------------- /frontend/ui/Charts/slideroverview/SliderWithoutKnobs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Charts/slideroverview/SliderWithoutKnobs.tsx -------------------------------------------------------------------------------- /frontend/ui/Charts/stageablechart/StageableChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Charts/stageablechart/StageableChart.tsx -------------------------------------------------------------------------------- /frontend/ui/CheckBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/CheckBox.tsx -------------------------------------------------------------------------------- /frontend/ui/ColorPickerComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/ColorPickerComponent.tsx -------------------------------------------------------------------------------- /frontend/ui/DashboardSelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/DashboardSelection.tsx -------------------------------------------------------------------------------- /frontend/ui/DashboardValues.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/DashboardValues.tsx -------------------------------------------------------------------------------- /frontend/ui/DropdownSelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/DropdownSelection.tsx -------------------------------------------------------------------------------- /frontend/ui/FontFamilyDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/FontFamilyDropdown.tsx -------------------------------------------------------------------------------- /frontend/ui/FullSizedLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/FullSizedLink.tsx -------------------------------------------------------------------------------- /frontend/ui/GeneralInfoMessageModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/GeneralInfoMessageModal.tsx -------------------------------------------------------------------------------- /frontend/ui/GroupingElementComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/GroupingElementComponent.tsx -------------------------------------------------------------------------------- /frontend/ui/HeaderLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/HeaderLogo.tsx -------------------------------------------------------------------------------- /frontend/ui/HorizontalDivider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/HorizontalDivider.tsx -------------------------------------------------------------------------------- /frontend/ui/IFrameComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/IFrameComponent.tsx -------------------------------------------------------------------------------- /frontend/ui/IconWithLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/IconWithLink.tsx -------------------------------------------------------------------------------- /frontend/ui/Icons/DashboardIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Icons/DashboardIcon.tsx -------------------------------------------------------------------------------- /frontend/ui/Icons/FontAwesomeIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Icons/FontAwesomeIcons.tsx -------------------------------------------------------------------------------- /frontend/ui/Icons/IconSelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Icons/IconSelection.tsx -------------------------------------------------------------------------------- /frontend/ui/Icons/LocalSvgIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Icons/LocalSvgIcons.tsx -------------------------------------------------------------------------------- /frontend/ui/ImageComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/ImageComponent.tsx -------------------------------------------------------------------------------- /frontend/ui/InfoDisplayComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/InfoDisplayComponent.tsx -------------------------------------------------------------------------------- /frontend/ui/InfoMessageModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/InfoMessageModal.tsx -------------------------------------------------------------------------------- /frontend/ui/MultipleColorPickers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/MultipleColorPickers.tsx -------------------------------------------------------------------------------- /frontend/ui/NoDataWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/NoDataWarning.tsx -------------------------------------------------------------------------------- /frontend/ui/PageHeadline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/PageHeadline.tsx -------------------------------------------------------------------------------- /frontend/ui/SearchableDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/SearchableDropdown.tsx -------------------------------------------------------------------------------- /frontend/ui/SelectorBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/SelectorBox.tsx -------------------------------------------------------------------------------- /frontend/ui/ShareLinkModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/ShareLinkModal.tsx -------------------------------------------------------------------------------- /frontend/ui/SnackBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/SnackBar.tsx -------------------------------------------------------------------------------- /frontend/ui/StaticValuesFields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/StaticValuesFields.tsx -------------------------------------------------------------------------------- /frontend/ui/StaticValuesFieldsMapLegend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/StaticValuesFieldsMapLegend.tsx -------------------------------------------------------------------------------- /frontend/ui/StaticValuesFieldsMapWidgets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/StaticValuesFieldsMapWidgets.tsx -------------------------------------------------------------------------------- /frontend/ui/StaticValuesFieldsRange.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/StaticValuesFieldsRange.tsx -------------------------------------------------------------------------------- /frontend/ui/Table/TableContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Table/TableContent.tsx -------------------------------------------------------------------------------- /frontend/ui/Table/TableHead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Table/TableHead.tsx -------------------------------------------------------------------------------- /frontend/ui/Table/TablePagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Table/TablePagination.tsx -------------------------------------------------------------------------------- /frontend/ui/Table/TableWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Table/TableWrapper.tsx -------------------------------------------------------------------------------- /frontend/ui/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/Tooltip.tsx -------------------------------------------------------------------------------- /frontend/ui/ValueSelectionSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/ValueSelectionSlider.tsx -------------------------------------------------------------------------------- /frontend/ui/VerticalDivider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/VerticalDivider.tsx -------------------------------------------------------------------------------- /frontend/ui/VisibilityDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/VisibilityDisplay.tsx -------------------------------------------------------------------------------- /frontend/ui/WeatherWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/WeatherWarning.tsx -------------------------------------------------------------------------------- /frontend/ui/WizardDropdownSelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/WizardDropdownSelection.tsx -------------------------------------------------------------------------------- /frontend/ui/WizardFileUpload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/WizardFileUpload.tsx -------------------------------------------------------------------------------- /frontend/ui/WizardIntegerfield.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/WizardIntegerfield.tsx -------------------------------------------------------------------------------- /frontend/ui/WizardLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/WizardLabel.tsx -------------------------------------------------------------------------------- /frontend/ui/WizardMultipleDropdownSelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/WizardMultipleDropdownSelection.tsx -------------------------------------------------------------------------------- /frontend/ui/WizardNumberfield.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/WizardNumberfield.tsx -------------------------------------------------------------------------------- /frontend/ui/WizardPasswordTextfield.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/WizardPasswordTextfield.tsx -------------------------------------------------------------------------------- /frontend/ui/WizardSelectBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/WizardSelectBox.tsx -------------------------------------------------------------------------------- /frontend/ui/WizardSuffixUrlTextfield.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/WizardSuffixUrlTextfield.tsx -------------------------------------------------------------------------------- /frontend/ui/WizardTextfield.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/WizardTextfield.tsx -------------------------------------------------------------------------------- /frontend/ui/WizardUrlTextfield.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/ui/WizardUrlTextfield.tsx -------------------------------------------------------------------------------- /frontend/utils/apiHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/utils/apiHelper.ts -------------------------------------------------------------------------------- /frontend/utils/chartHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/utils/chartHelper.ts -------------------------------------------------------------------------------- /frontend/utils/combinedMapDataHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/utils/combinedMapDataHelper.ts -------------------------------------------------------------------------------- /frontend/utils/downloadHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/utils/downloadHelper.ts -------------------------------------------------------------------------------- /frontend/utils/dragDropHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/utils/dragDropHelper.ts -------------------------------------------------------------------------------- /frontend/utils/enumMapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/utils/enumMapper.ts -------------------------------------------------------------------------------- /frontend/utils/fontUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/utils/fontUtil.ts -------------------------------------------------------------------------------- /frontend/utils/gridHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/utils/gridHelper.ts -------------------------------------------------------------------------------- /frontend/utils/mathHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/utils/mathHelper.ts -------------------------------------------------------------------------------- /frontend/utils/objectHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/utils/objectHelper.ts -------------------------------------------------------------------------------- /frontend/utils/tabTypeHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/utils/tabTypeHelper.ts -------------------------------------------------------------------------------- /frontend/utils/tenantHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/utils/tenantHelper.ts -------------------------------------------------------------------------------- /frontend/utils/validationHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/utils/validationHelper.ts -------------------------------------------------------------------------------- /frontend/validators/queryConfigValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/validators/queryConfigValidator.ts -------------------------------------------------------------------------------- /frontend/validators/tabValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/validators/tabValidator.ts -------------------------------------------------------------------------------- /frontend/validators/widgetValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/frontend/validators/widgetValidator.ts -------------------------------------------------------------------------------- /init_insert.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/init_insert.sql -------------------------------------------------------------------------------- /k8s/README-external.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/README-external.adoc -------------------------------------------------------------------------------- /k8s/README-internal.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/README-internal.adoc -------------------------------------------------------------------------------- /k8s/helm/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/.helmignore -------------------------------------------------------------------------------- /k8s/helm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/Chart.yaml -------------------------------------------------------------------------------- /k8s/helm/ca-issuer-clusterissuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/ca-issuer-clusterissuer.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/api-service/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/api-service/Chart.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/api-service/templates/deployment.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.deployment" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/api-service/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.ingress" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/api-service/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.service" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/api-service/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/api-service/values.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/common/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/common/Chart.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/common/templates/_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/common/templates/_deployment.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/common/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/common/templates/_helpers.tpl -------------------------------------------------------------------------------- /k8s/helm/charts/common/templates/_ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/common/templates/_ingress.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/common/templates/_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/common/templates/_service.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/dashboard-service/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/dashboard-service/Chart.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/dashboard-service/templates/deployment.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.deployment" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/dashboard-service/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.ingress" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/dashboard-service/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.service" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/dashboard-service/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/dashboard-service/values.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/data-translation-service/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/data-translation-service/Chart.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/data-translation-service/templates/deployment.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.deployment" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/data-translation-service/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.ingress" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/data-translation-service/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.service" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/data-translation-service/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/data-translation-service/values.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/frontend/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/frontend/Chart.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/frontend/templates/deployment.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.deployment" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/frontend/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.ingress" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/frontend/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.service" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/frontend/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/frontend/values.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/infopin-service/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/infopin-service/Chart.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/infopin-service/templates/deployment.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.deployment" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/infopin-service/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.ingress" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/infopin-service/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.service" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/infopin-service/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/infopin-service/values.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/mail-service/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/mail-service/Chart.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/mail-service/templates/deployment.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.deployment" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/mail-service/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.ingress" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/mail-service/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.service" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/mail-service/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/mail-service/values.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/migrations/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/migrations/Chart.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/migrations/templates/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/migrations/templates/job.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/migrations/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/migrations/values.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/ngsi-service/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/ngsi-service/Chart.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/ngsi-service/templates/deployment.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.deployment" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/ngsi-service/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.ingress" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/ngsi-service/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.service" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/ngsi-service/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/ngsi-service/values.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/orchideo-connect-service/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/orchideo-connect-service/Chart.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/orchideo-connect-service/templates/deployment.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.deployment" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/orchideo-connect-service/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.ingress" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/orchideo-connect-service/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.service" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/orchideo-connect-service/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/orchideo-connect-service/values.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/report-service/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/report-service/Chart.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/report-service/templates/deployment.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.deployment" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/report-service/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.ingress" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/report-service/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.service" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/report-service/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/report-service/values.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/static-data-service/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/static-data-service/Chart.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/static-data-service/templates/deployment.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.deployment" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/static-data-service/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.ingress" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/static-data-service/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.service" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/static-data-service/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/static-data-service/values.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/usi-platform-service/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/usi-platform-service/Chart.yaml -------------------------------------------------------------------------------- /k8s/helm/charts/usi-platform-service/templates/deployment.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.deployment" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/usi-platform-service/templates/ingress.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.ingress" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/usi-platform-service/templates/service.yaml: -------------------------------------------------------------------------------- 1 | {{- template "common.service" . -}} 2 | -------------------------------------------------------------------------------- /k8s/helm/charts/usi-platform-service/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/charts/usi-platform-service/values.yaml -------------------------------------------------------------------------------- /k8s/helm/keycloak-config/production-realm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/keycloak-config/production-realm.json -------------------------------------------------------------------------------- /k8s/helm/keycloak-config/testrealm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/keycloak-config/testrealm.json -------------------------------------------------------------------------------- /k8s/helm/postgresql/initDb/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/postgresql/initDb/init.sql -------------------------------------------------------------------------------- /k8s/helm/templates/configmaps/api-service-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/templates/configmaps/api-service-configmap.yaml -------------------------------------------------------------------------------- /k8s/helm/templates/configmaps/dashboard-service-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/templates/configmaps/dashboard-service-configmap.yaml -------------------------------------------------------------------------------- /k8s/helm/templates/configmaps/frontend-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/templates/configmaps/frontend-configmap.yaml -------------------------------------------------------------------------------- /k8s/helm/templates/configmaps/infopin-service-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/templates/configmaps/infopin-service-configmap.yaml -------------------------------------------------------------------------------- /k8s/helm/templates/configmaps/keycloak-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/templates/configmaps/keycloak-config.yaml -------------------------------------------------------------------------------- /k8s/helm/templates/configmaps/mail-service-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/templates/configmaps/mail-service-configmap.yaml -------------------------------------------------------------------------------- /k8s/helm/templates/configmaps/ngsi-service-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/templates/configmaps/ngsi-service-configmap.yaml -------------------------------------------------------------------------------- /k8s/helm/templates/configmaps/orchideo-connect-service-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/templates/configmaps/orchideo-connect-service-configmap.yaml -------------------------------------------------------------------------------- /k8s/helm/templates/configmaps/postgresql-connection-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/templates/configmaps/postgresql-connection-configmap.yaml -------------------------------------------------------------------------------- /k8s/helm/templates/configmaps/postgresql-init-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/templates/configmaps/postgresql-init-configmap.yaml -------------------------------------------------------------------------------- /k8s/helm/templates/configmaps/report-service-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/templates/configmaps/report-service-configmap.yaml -------------------------------------------------------------------------------- /k8s/helm/templates/configmaps/static-data-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/templates/configmaps/static-data-configmap.yaml -------------------------------------------------------------------------------- /k8s/helm/templates/configmaps/trusted-ca-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/templates/configmaps/trusted-ca-configmap.yaml -------------------------------------------------------------------------------- /k8s/helm/templates/configmaps/usi-platform-service-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/templates/configmaps/usi-platform-service-configmap.yaml -------------------------------------------------------------------------------- /k8s/helm/templates/secrets/frontend-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/templates/secrets/frontend-secrets.yaml -------------------------------------------------------------------------------- /k8s/helm/templates/secrets/keycloak-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/templates/secrets/keycloak-secrets.yaml -------------------------------------------------------------------------------- /k8s/helm/templates/secrets/postgresql-connection-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/templates/secrets/postgresql-connection-secrets.yaml -------------------------------------------------------------------------------- /k8s/helm/templates/secrets/postgresql-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/templates/secrets/postgresql-secrets.yaml -------------------------------------------------------------------------------- /k8s/helm/templates/secrets/usi-platform-service-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/templates/secrets/usi-platform-service-secrets.yaml -------------------------------------------------------------------------------- /k8s/helm/values-edag-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/values-edag-dev.yaml -------------------------------------------------------------------------------- /k8s/helm/values-edag-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/values-edag-prod.yaml -------------------------------------------------------------------------------- /k8s/helm/values-edag-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/values-edag-test.yaml -------------------------------------------------------------------------------- /k8s/helm/values-edag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/values-edag.yaml -------------------------------------------------------------------------------- /k8s/helm/values-hcloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/values-hcloud.yaml -------------------------------------------------------------------------------- /k8s/helm/values-infrastructure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/values-infrastructure.yaml -------------------------------------------------------------------------------- /k8s/helm/values-local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/values-local.yaml -------------------------------------------------------------------------------- /k8s/helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/k8s/helm/values.yaml -------------------------------------------------------------------------------- /keycloak/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/keycloak/README.adoc -------------------------------------------------------------------------------- /keycloak/import/testrealm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/keycloak/import/testrealm.json -------------------------------------------------------------------------------- /microservices/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/.dockerignore -------------------------------------------------------------------------------- /microservices/.env.testing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/.env.testing -------------------------------------------------------------------------------- /microservices/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/.gitignore -------------------------------------------------------------------------------- /microservices/Dockerfile.api-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/Dockerfile.api-service -------------------------------------------------------------------------------- /microservices/Dockerfile.dashboard-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/Dockerfile.dashboard-service -------------------------------------------------------------------------------- /microservices/Dockerfile.data-translation-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/Dockerfile.data-translation-service -------------------------------------------------------------------------------- /microservices/Dockerfile.infopin-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/Dockerfile.infopin-service -------------------------------------------------------------------------------- /microservices/Dockerfile.mail-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/Dockerfile.mail-service -------------------------------------------------------------------------------- /microservices/Dockerfile.ngsi-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/Dockerfile.ngsi-service -------------------------------------------------------------------------------- /microservices/Dockerfile.orchideo-connect-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/Dockerfile.orchideo-connect-service -------------------------------------------------------------------------------- /microservices/Dockerfile.report-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/Dockerfile.report-service -------------------------------------------------------------------------------- /microservices/Dockerfile.static-data-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/Dockerfile.static-data-service -------------------------------------------------------------------------------- /microservices/Dockerfile.usi-platform-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/Dockerfile.usi-platform-service -------------------------------------------------------------------------------- /microservices/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/README.adoc -------------------------------------------------------------------------------- /microservices/apps/api-service/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/api-service/README.adoc -------------------------------------------------------------------------------- /microservices/apps/api-service/src/api.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/api-service/src/api.controller.ts -------------------------------------------------------------------------------- /microservices/apps/api-service/src/api.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/api-service/src/api.module.ts -------------------------------------------------------------------------------- /microservices/apps/api-service/src/api.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/api-service/src/api.service.ts -------------------------------------------------------------------------------- /microservices/apps/api-service/src/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/api-service/src/auth/auth.module.ts -------------------------------------------------------------------------------- /microservices/apps/api-service/src/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/api-service/src/auth/auth.service.ts -------------------------------------------------------------------------------- /microservices/apps/api-service/src/data/data.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/api-service/src/data/data.module.ts -------------------------------------------------------------------------------- /microservices/apps/api-service/src/data/data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/api-service/src/data/data.service.ts -------------------------------------------------------------------------------- /microservices/apps/api-service/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/api-service/src/main.ts -------------------------------------------------------------------------------- /microservices/apps/api-service/src/organisation-schedule.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/api-service/src/organisation-schedule.service.ts -------------------------------------------------------------------------------- /microservices/apps/api-service/src/organisation/organisation.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/api-service/src/organisation/organisation.module.ts -------------------------------------------------------------------------------- /microservices/apps/api-service/src/organisation/organisation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/api-service/src/organisation/organisation.service.ts -------------------------------------------------------------------------------- /microservices/apps/api-service/src/query/query.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/api-service/src/query/query.module.ts -------------------------------------------------------------------------------- /microservices/apps/api-service/src/query/query.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/api-service/src/query/query.service.ts -------------------------------------------------------------------------------- /microservices/apps/api-service/src/report/report.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/api-service/src/report/report.module.ts -------------------------------------------------------------------------------- /microservices/apps/api-service/src/report/report.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/api-service/src/report/report.service.ts -------------------------------------------------------------------------------- /microservices/apps/api-service/src/schedule.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/api-service/src/schedule.service.ts -------------------------------------------------------------------------------- /microservices/apps/api-service/src/system-user/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/api-service/src/system-user/README.adoc -------------------------------------------------------------------------------- /microservices/apps/api-service/src/system-user/system-user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/api-service/src/system-user/system-user.controller.ts -------------------------------------------------------------------------------- /microservices/apps/api-service/src/system-user/system-user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/api-service/src/system-user/system-user.module.ts -------------------------------------------------------------------------------- /microservices/apps/api-service/src/system-user/system-user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/api-service/src/system-user/system-user.service.ts -------------------------------------------------------------------------------- /microservices/apps/api-service/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/api-service/tsconfig.app.json -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/README.adoc -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/TEST_COVERAGE.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/TEST_COVERAGE.adoc -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/auth-data/auth-data.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/auth-data/auth-data.controller.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/auth-data/auth-data.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/auth-data/auth-data.module.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/auth-data/auth-data.repo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/auth-data/auth-data.repo.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/auth-data/auth-data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/auth-data/auth-data.service.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/auth-data/test/auth-data.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/auth-data/test/auth-data.spec.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/auth-data/test/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/auth-data/test/test-data.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/corporate-info/corporate-info.repo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/corporate-info/corporate-info.repo.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/corporate-info/test/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/corporate-info/test/test-data.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/dashboard-service.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/dashboard-service.module.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/dashboard/dashboard.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/dashboard/dashboard.controller.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/dashboard/dashboard.data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/dashboard/dashboard.data.service.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/dashboard/dashboard.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/dashboard/dashboard.module.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/dashboard/dashboard.repo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/dashboard/dashboard.repo.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/dashboard/dashboard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/dashboard/dashboard.service.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/dashboard/populate/fiware.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/dashboard/populate/fiware.types.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/dashboard/populate/populate.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/dashboard/populate/populate.util.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/dashboard/test/dashboard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/dashboard/test/dashboard.spec.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/dashboard/test/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/dashboard/test/test-data.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/data-source/data-source.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/data-source/data-source.controller.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/data-source/data-source.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/data-source/data-source.module.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/data-source/data-source.repo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/data-source/data-source.repo.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/data-source/data-source.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/data-source/data-source.service.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/data-source/test/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/data-source/test/test-data.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/general-settings/test/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/general-settings/test/test-data.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/grouping-element/test/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/grouping-element/test/test-data.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/logging/logger.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/logging/logger.controller.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/logging/logger.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/logging/logger.module.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/logging/logger.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/logging/logger.service.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/logging/loggingUtilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/logging/loggingUtilities.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/logging/test/logging.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/logging/test/logging.spec.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/logging/test/test-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/logging/test/test-util.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/logo/logo.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/logo/logo.controller.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/logo/logo.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/logo/logo.module.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/logo/logo.repo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/logo/logo.repo.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/logo/logo.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/logo/logo.service.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/logo/test/logo.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/logo/test/logo.spec.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/logo/test/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/logo/test/test-data.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/main.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/panel/panel.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/panel/panel.controller.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/panel/panel.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/panel/panel.module.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/panel/panel.repo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/panel/panel.repo.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/panel/panel.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/panel/panel.service.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/panel/test/panel.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/panel/test/panel.spec.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/panel/test/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/panel/test/test-data.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/query-config/query-config.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/query-config/query-config.module.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/query-config/query-config.repo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/query-config/query-config.repo.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/query-config/query-config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/query-config/query-config.service.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/query-config/test/queryconfig.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/query-config/test/queryconfig.spec.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/query-config/test/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/query-config/test/test-data.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/query/query.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/query/query.controller.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/query/query.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/query/query.module.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/query/query.repo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/query/query.repo.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/query/query.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/query/query.service.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/query/test/query.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/query/test/query.spec.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/query/test/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/query/test/test-data.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/tab/tab.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/tab/tab.controller.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/tab/tab.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/tab/tab.module.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/tab/tab.repo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/tab/tab.repo.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/tab/tab.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/tab/tab.service.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/tab/test/tab.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/tab/test/tab.spec.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/tab/test/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/tab/test/test-data.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/tenant/tenant.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/tenant/tenant.controller.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/tenant/tenant.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/tenant/tenant.module.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/tenant/tenant.repo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/tenant/tenant.repo.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/tenant/tenant.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/tenant/tenant.service.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/tenant/test/tenant.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/tenant/test/tenant.spec.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/tenant/test/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/tenant/test/test-data.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/util/encryption.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/util/encryption.util.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/validators/tab-validator.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/validators/tab-validator.pipe.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/validators/widget-validator.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/validators/widget-validator.pipe.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/widget/test/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/widget/test/test-data.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/widget/test/widget.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/widget/test/widget.spec.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/widget/widget.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/widget/widget.controller.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/widget/widget.data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/widget/widget.data.service.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/widget/widget.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/widget/widget.model.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/widget/widget.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/widget/widget.module.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/widget/widget.repo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/widget/widget.repo.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/src/widget/widget.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/src/widget/widget.service.ts -------------------------------------------------------------------------------- /microservices/apps/dashboard-service/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/dashboard-service/tsconfig.app.json -------------------------------------------------------------------------------- /microservices/apps/data-translation-service/src/data-translation.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/data-translation-service/src/data-translation.module.ts -------------------------------------------------------------------------------- /microservices/apps/data-translation-service/src/data-translation.repo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/data-translation-service/src/data-translation.repo.ts -------------------------------------------------------------------------------- /microservices/apps/data-translation-service/src/data-translation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/data-translation-service/src/data-translation.service.ts -------------------------------------------------------------------------------- /microservices/apps/data-translation-service/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/data-translation-service/src/main.ts -------------------------------------------------------------------------------- /microservices/apps/data-translation-service/src/populate/fiware.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/data-translation-service/src/populate/fiware.types.ts -------------------------------------------------------------------------------- /microservices/apps/data-translation-service/src/populate/populate.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/data-translation-service/src/populate/populate.util.ts -------------------------------------------------------------------------------- /microservices/apps/data-translation-service/src/scheduler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/data-translation-service/src/scheduler.service.ts -------------------------------------------------------------------------------- /microservices/apps/data-translation-service/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/data-translation-service/tsconfig.app.json -------------------------------------------------------------------------------- /microservices/apps/infopin-service/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/infopin-service/README.adoc -------------------------------------------------------------------------------- /microservices/apps/infopin-service/images/.gitignore: -------------------------------------------------------------------------------- 1 | *.jpeg 2 | -------------------------------------------------------------------------------- /microservices/apps/infopin-service/src/climate-project/test/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/infopin-service/src/climate-project/test/test-data.ts -------------------------------------------------------------------------------- /microservices/apps/infopin-service/src/defect/defect.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/infopin-service/src/defect/defect.controller.ts -------------------------------------------------------------------------------- /microservices/apps/infopin-service/src/defect/defect.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/infopin-service/src/defect/defect.module.ts -------------------------------------------------------------------------------- /microservices/apps/infopin-service/src/defect/defect.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/infopin-service/src/defect/defect.service.ts -------------------------------------------------------------------------------- /microservices/apps/infopin-service/src/defect/test/defect.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/infopin-service/src/defect/test/defect.spec.ts -------------------------------------------------------------------------------- /microservices/apps/infopin-service/src/defect/test/fulda-high-water.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/infopin-service/src/defect/test/fulda-high-water.jpg -------------------------------------------------------------------------------- /microservices/apps/infopin-service/src/defect/test/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/infopin-service/src/defect/test/test-data.ts -------------------------------------------------------------------------------- /microservices/apps/infopin-service/src/infopin-service.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/infopin-service/src/infopin-service.module.ts -------------------------------------------------------------------------------- /microservices/apps/infopin-service/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/infopin-service/src/main.ts -------------------------------------------------------------------------------- /microservices/apps/infopin-service/src/multer-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/infopin-service/src/multer-config.ts -------------------------------------------------------------------------------- /microservices/apps/infopin-service/src/report/report.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/infopin-service/src/report/report.controller.ts -------------------------------------------------------------------------------- /microservices/apps/infopin-service/src/report/report.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/infopin-service/src/report/report.module.ts -------------------------------------------------------------------------------- /microservices/apps/infopin-service/src/report/report.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/infopin-service/src/report/report.service.ts -------------------------------------------------------------------------------- /microservices/apps/infopin-service/src/report/test/fulda-high-water.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/infopin-service/src/report/test/fulda-high-water.jpg -------------------------------------------------------------------------------- /microservices/apps/infopin-service/src/report/test/report.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/infopin-service/src/report/test/report.spec.ts -------------------------------------------------------------------------------- /microservices/apps/infopin-service/src/report/test/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/infopin-service/src/report/test/test-data.ts -------------------------------------------------------------------------------- /microservices/apps/infopin-service/src/utility/RoleUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/infopin-service/src/utility/RoleUtil.ts -------------------------------------------------------------------------------- /microservices/apps/infopin-service/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/infopin-service/tsconfig.app.json -------------------------------------------------------------------------------- /microservices/apps/mail-service/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/mail-service/README.adoc -------------------------------------------------------------------------------- /microservices/apps/mail-service/src/dto/mail.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/mail-service/src/dto/mail.dto.ts -------------------------------------------------------------------------------- /microservices/apps/mail-service/src/mail.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/mail-service/src/mail.controller.ts -------------------------------------------------------------------------------- /microservices/apps/mail-service/src/mail.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/mail-service/src/mail.module.ts -------------------------------------------------------------------------------- /microservices/apps/mail-service/src/mail.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/mail-service/src/mail.service.ts -------------------------------------------------------------------------------- /microservices/apps/mail-service/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/mail-service/src/main.ts -------------------------------------------------------------------------------- /microservices/apps/mail-service/src/test/mail.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/mail-service/src/test/mail.service.spec.ts -------------------------------------------------------------------------------- /microservices/apps/mail-service/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/mail-service/tsconfig.app.json -------------------------------------------------------------------------------- /microservices/apps/ngsi-service/README.live-data.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/ngsi-service/README.live-data.adoc -------------------------------------------------------------------------------- /microservices/apps/ngsi-service/src/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/ngsi-service/src/auth/auth.service.ts -------------------------------------------------------------------------------- /microservices/apps/ngsi-service/src/auth/test/app.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/ngsi-service/src/auth/test/app.spec.ts -------------------------------------------------------------------------------- /microservices/apps/ngsi-service/src/auth/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/ngsi-service/src/auth/test/jest-e2e.json -------------------------------------------------------------------------------- /microservices/apps/ngsi-service/src/auth/test/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/ngsi-service/src/auth/test/test-data.ts -------------------------------------------------------------------------------- /microservices/apps/ngsi-service/src/auth/token-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/ngsi-service/src/auth/token-data.ts -------------------------------------------------------------------------------- /microservices/apps/ngsi-service/src/data/data.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/ngsi-service/src/data/data.module.ts -------------------------------------------------------------------------------- /microservices/apps/ngsi-service/src/data/data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/ngsi-service/src/data/data.service.ts -------------------------------------------------------------------------------- /microservices/apps/ngsi-service/src/data/test/app.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/ngsi-service/src/data/test/app.spec.ts -------------------------------------------------------------------------------- /microservices/apps/ngsi-service/src/data/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/ngsi-service/src/data/test/jest-e2e.json -------------------------------------------------------------------------------- /microservices/apps/ngsi-service/src/data/test/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/ngsi-service/src/data/test/test-data.ts -------------------------------------------------------------------------------- /microservices/apps/ngsi-service/src/fiware-wizard/fiware-wizard.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/ngsi-service/src/fiware-wizard/fiware-wizard.controller.ts -------------------------------------------------------------------------------- /microservices/apps/ngsi-service/src/fiware-wizard/fiware-wizard.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/ngsi-service/src/fiware-wizard/fiware-wizard.module.ts -------------------------------------------------------------------------------- /microservices/apps/ngsi-service/src/fiware-wizard/fiware-wizard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/ngsi-service/src/fiware-wizard/fiware-wizard.service.ts -------------------------------------------------------------------------------- /microservices/apps/ngsi-service/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/ngsi-service/src/main.ts -------------------------------------------------------------------------------- /microservices/apps/ngsi-service/src/ngsi.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/ngsi-service/src/ngsi.controller.ts -------------------------------------------------------------------------------- /microservices/apps/ngsi-service/src/ngsi.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/ngsi-service/src/ngsi.module.ts -------------------------------------------------------------------------------- /microservices/apps/ngsi-service/src/ngsi.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/ngsi-service/src/ngsi.service.ts -------------------------------------------------------------------------------- /microservices/apps/ngsi-service/src/query/query.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/ngsi-service/src/query/query.module.ts -------------------------------------------------------------------------------- /microservices/apps/ngsi-service/src/query/query.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/ngsi-service/src/query/query.service.ts -------------------------------------------------------------------------------- /microservices/apps/ngsi-service/src/query/test/app.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/ngsi-service/src/query/test/app.spec.ts -------------------------------------------------------------------------------- /microservices/apps/ngsi-service/src/report/report.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/ngsi-service/src/report/report.module.ts -------------------------------------------------------------------------------- /microservices/apps/ngsi-service/src/report/report.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/ngsi-service/src/report/report.service.ts -------------------------------------------------------------------------------- /microservices/apps/ngsi-service/src/report/test/app.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/ngsi-service/src/report/test/app.spec.ts -------------------------------------------------------------------------------- /microservices/apps/ngsi-service/src/report/test/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/ngsi-service/src/report/test/test-data.ts -------------------------------------------------------------------------------- /microservices/apps/ngsi-service/src/scheduler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/ngsi-service/src/scheduler.service.ts -------------------------------------------------------------------------------- /microservices/apps/ngsi-service/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/ngsi-service/tsconfig.app.json -------------------------------------------------------------------------------- /microservices/apps/orchideo-connect-service/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/orchideo-connect-service/README.adoc -------------------------------------------------------------------------------- /microservices/apps/orchideo-connect-service/src/api.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/orchideo-connect-service/src/api.controller.ts -------------------------------------------------------------------------------- /microservices/apps/orchideo-connect-service/src/api.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/orchideo-connect-service/src/api.module.ts -------------------------------------------------------------------------------- /microservices/apps/orchideo-connect-service/src/api.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/orchideo-connect-service/src/api.service.ts -------------------------------------------------------------------------------- /microservices/apps/orchideo-connect-service/src/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/orchideo-connect-service/src/auth/auth.module.ts -------------------------------------------------------------------------------- /microservices/apps/orchideo-connect-service/src/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/orchideo-connect-service/src/auth/auth.service.ts -------------------------------------------------------------------------------- /microservices/apps/orchideo-connect-service/src/auth/test/auth.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/orchideo-connect-service/src/auth/test/auth.spec.ts -------------------------------------------------------------------------------- /microservices/apps/orchideo-connect-service/src/auth/test/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/orchideo-connect-service/src/auth/test/test-data.ts -------------------------------------------------------------------------------- /microservices/apps/orchideo-connect-service/src/data/data.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/orchideo-connect-service/src/data/data.module.ts -------------------------------------------------------------------------------- /microservices/apps/orchideo-connect-service/src/data/data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/orchideo-connect-service/src/data/data.service.ts -------------------------------------------------------------------------------- /microservices/apps/orchideo-connect-service/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/orchideo-connect-service/src/main.ts -------------------------------------------------------------------------------- /microservices/apps/orchideo-connect-service/src/query/query.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/orchideo-connect-service/src/query/query.module.ts -------------------------------------------------------------------------------- /microservices/apps/orchideo-connect-service/src/query/query.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/orchideo-connect-service/src/query/query.service.ts -------------------------------------------------------------------------------- /microservices/apps/orchideo-connect-service/src/report/report.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/orchideo-connect-service/src/report/report.module.ts -------------------------------------------------------------------------------- /microservices/apps/orchideo-connect-service/src/report/report.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/orchideo-connect-service/src/report/report.service.ts -------------------------------------------------------------------------------- /microservices/apps/orchideo-connect-service/src/schedule.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/orchideo-connect-service/src/schedule.service.ts -------------------------------------------------------------------------------- /microservices/apps/orchideo-connect-service/src/system-user/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/orchideo-connect-service/src/system-user/README.adoc -------------------------------------------------------------------------------- /microservices/apps/orchideo-connect-service/src/system-user/test/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/orchideo-connect-service/src/system-user/test/test-data.ts -------------------------------------------------------------------------------- /microservices/apps/orchideo-connect-service/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/orchideo-connect-service/tsconfig.app.json -------------------------------------------------------------------------------- /microservices/apps/report-service/src/config/config.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/report-service/src/config/config.controller.ts -------------------------------------------------------------------------------- /microservices/apps/report-service/src/config/config.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/report-service/src/config/config.module.ts -------------------------------------------------------------------------------- /microservices/apps/report-service/src/config/config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/report-service/src/config/config.service.ts -------------------------------------------------------------------------------- /microservices/apps/report-service/src/config/config.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/report-service/src/config/config.spec.ts -------------------------------------------------------------------------------- /microservices/apps/report-service/src/dto/mail.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/report-service/src/dto/mail.dto.ts -------------------------------------------------------------------------------- /microservices/apps/report-service/src/mail/mail.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/report-service/src/mail/mail.module.ts -------------------------------------------------------------------------------- /microservices/apps/report-service/src/mail/mail.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/report-service/src/mail/mail.service.ts -------------------------------------------------------------------------------- /microservices/apps/report-service/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/report-service/src/main.ts -------------------------------------------------------------------------------- /microservices/apps/report-service/src/query/query.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/report-service/src/query/query.module.ts -------------------------------------------------------------------------------- /microservices/apps/report-service/src/query/query.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/report-service/src/query/query.service.ts -------------------------------------------------------------------------------- /microservices/apps/report-service/src/report.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/report-service/src/report.module.ts -------------------------------------------------------------------------------- /microservices/apps/report-service/src/report.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/report-service/src/report.service.ts -------------------------------------------------------------------------------- /microservices/apps/report-service/src/scheduler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/report-service/src/scheduler.service.ts -------------------------------------------------------------------------------- /microservices/apps/report-service/src/test/report-service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/report-service/src/test/report-service.spec.ts -------------------------------------------------------------------------------- /microservices/apps/report-service/src/test/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/report-service/src/test/test-data.ts -------------------------------------------------------------------------------- /microservices/apps/report-service/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/report-service/tsconfig.app.json -------------------------------------------------------------------------------- /microservices/apps/static-data-service/src/data/data.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/static-data-service/src/data/data.module.ts -------------------------------------------------------------------------------- /microservices/apps/static-data-service/src/data/data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/static-data-service/src/data/data.service.ts -------------------------------------------------------------------------------- /microservices/apps/static-data-service/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/static-data-service/src/main.ts -------------------------------------------------------------------------------- /microservices/apps/static-data-service/src/query/query.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/static-data-service/src/query/query.module.ts -------------------------------------------------------------------------------- /microservices/apps/static-data-service/src/query/query.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/static-data-service/src/query/query.service.ts -------------------------------------------------------------------------------- /microservices/apps/static-data-service/src/schedule.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/static-data-service/src/schedule.service.ts -------------------------------------------------------------------------------- /microservices/apps/static-data-service/src/static-data.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/static-data-service/src/static-data.module.ts -------------------------------------------------------------------------------- /microservices/apps/static-data-service/src/transformation/test/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/static-data-service/src/transformation/test/test-data.ts -------------------------------------------------------------------------------- /microservices/apps/static-data-service/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/static-data-service/tsconfig.app.json -------------------------------------------------------------------------------- /microservices/apps/test/database-operations/database.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/test/database-operations/database.spec.ts -------------------------------------------------------------------------------- /microservices/apps/test/database-operations/prepare-database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/test/database-operations/prepare-database.ts -------------------------------------------------------------------------------- /microservices/apps/test/index.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/test/index.e2e-spec.ts -------------------------------------------------------------------------------- /microservices/apps/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/test/jest-e2e.json -------------------------------------------------------------------------------- /microservices/apps/test/jwt-token-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/test/jwt-token-util.ts -------------------------------------------------------------------------------- /microservices/apps/usi-platform-service/README.adoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microservices/apps/usi-platform-service/src/auth/auth.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/usi-platform-service/src/auth/auth.controller.ts -------------------------------------------------------------------------------- /microservices/apps/usi-platform-service/src/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/usi-platform-service/src/auth/auth.module.ts -------------------------------------------------------------------------------- /microservices/apps/usi-platform-service/src/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/usi-platform-service/src/auth/auth.service.ts -------------------------------------------------------------------------------- /microservices/apps/usi-platform-service/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/usi-platform-service/src/main.ts -------------------------------------------------------------------------------- /microservices/apps/usi-platform-service/src/usi-platform.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/usi-platform-service/src/usi-platform.controller.ts -------------------------------------------------------------------------------- /microservices/apps/usi-platform-service/src/usi-platform.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/usi-platform-service/src/usi-platform.module.ts -------------------------------------------------------------------------------- /microservices/apps/usi-platform-service/src/usi-platform.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/usi-platform-service/src/usi-platform.service.ts -------------------------------------------------------------------------------- /microservices/apps/usi-platform-service/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/apps/usi-platform-service/tsconfig.app.json -------------------------------------------------------------------------------- /microservices/libs/auth-helper/src/AuthGuard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/auth-helper/src/AuthGuard.ts -------------------------------------------------------------------------------- /microservices/libs/auth-helper/src/PublicDecorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/auth-helper/src/PublicDecorator.ts -------------------------------------------------------------------------------- /microservices/libs/auth-helper/src/auth-helper.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/auth-helper/src/auth-helper.middleware.ts -------------------------------------------------------------------------------- /microservices/libs/auth-helper/src/auth-helper.utility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/auth-helper/src/auth-helper.utility.ts -------------------------------------------------------------------------------- /microservices/libs/auth-helper/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/auth-helper/src/index.ts -------------------------------------------------------------------------------- /microservices/libs/auth-helper/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/auth-helper/tsconfig.lib.json -------------------------------------------------------------------------------- /microservices/libs/postgres-db/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/postgres-db/src/index.ts -------------------------------------------------------------------------------- /microservices/libs/postgres-db/src/postgres-db.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/postgres-db/src/postgres-db.module.ts -------------------------------------------------------------------------------- /microservices/libs/postgres-db/src/providers/db.provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/postgres-db/src/providers/db.provider.ts -------------------------------------------------------------------------------- /microservices/libs/postgres-db/src/schemas/auth-data.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/postgres-db/src/schemas/auth-data.schema.ts -------------------------------------------------------------------------------- /microservices/libs/postgres-db/src/schemas/climate-project.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/postgres-db/src/schemas/climate-project.schema.ts -------------------------------------------------------------------------------- /microservices/libs/postgres-db/src/schemas/corporate-info.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/postgres-db/src/schemas/corporate-info.schema.ts -------------------------------------------------------------------------------- /microservices/libs/postgres-db/src/schemas/dashboard-to-tenant.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/postgres-db/src/schemas/dashboard-to-tenant.schema.ts -------------------------------------------------------------------------------- /microservices/libs/postgres-db/src/schemas/dashboard.panel.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/postgres-db/src/schemas/dashboard.panel.schema.ts -------------------------------------------------------------------------------- /microservices/libs/postgres-db/src/schemas/dashboard.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/postgres-db/src/schemas/dashboard.schema.ts -------------------------------------------------------------------------------- /microservices/libs/postgres-db/src/schemas/dashboard.tab.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/postgres-db/src/schemas/dashboard.tab.schema.ts -------------------------------------------------------------------------------- /microservices/libs/postgres-db/src/schemas/dashboard.widget-to-panel.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/postgres-db/src/schemas/dashboard.widget-to-panel.schema.ts -------------------------------------------------------------------------------- /microservices/libs/postgres-db/src/schemas/dashboard.widget.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/postgres-db/src/schemas/dashboard.widget.schema.ts -------------------------------------------------------------------------------- /microservices/libs/postgres-db/src/schemas/data-model.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/postgres-db/src/schemas/data-model.schema.ts -------------------------------------------------------------------------------- /microservices/libs/postgres-db/src/schemas/data-source.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/postgres-db/src/schemas/data-source.schema.ts -------------------------------------------------------------------------------- /microservices/libs/postgres-db/src/schemas/defect.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/postgres-db/src/schemas/defect.schema.ts -------------------------------------------------------------------------------- /microservices/libs/postgres-db/src/schemas/enums.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/postgres-db/src/schemas/enums.schema.ts -------------------------------------------------------------------------------- /microservices/libs/postgres-db/src/schemas/general-settings.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/postgres-db/src/schemas/general-settings.schema.ts -------------------------------------------------------------------------------- /microservices/libs/postgres-db/src/schemas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/postgres-db/src/schemas/index.ts -------------------------------------------------------------------------------- /microservices/libs/postgres-db/src/schemas/logo.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/postgres-db/src/schemas/logo.schema.ts -------------------------------------------------------------------------------- /microservices/libs/postgres-db/src/schemas/query-config.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/postgres-db/src/schemas/query-config.schema.ts -------------------------------------------------------------------------------- /microservices/libs/postgres-db/src/schemas/query.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/postgres-db/src/schemas/query.schema.ts -------------------------------------------------------------------------------- /microservices/libs/postgres-db/src/schemas/report.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/postgres-db/src/schemas/report.schema.ts -------------------------------------------------------------------------------- /microservices/libs/postgres-db/src/schemas/sensor-report.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/postgres-db/src/schemas/sensor-report.schema.ts -------------------------------------------------------------------------------- /microservices/libs/postgres-db/src/schemas/tenant.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/postgres-db/src/schemas/tenant.schema.ts -------------------------------------------------------------------------------- /microservices/libs/postgres-db/src/schemas/tenant.system-user.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/postgres-db/src/schemas/tenant.system-user.schema.ts -------------------------------------------------------------------------------- /microservices/libs/postgres-db/src/schemas/widget-to-tenant.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/postgres-db/src/schemas/widget-to-tenant.schema.ts -------------------------------------------------------------------------------- /microservices/libs/postgres-db/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/libs/postgres-db/tsconfig.lib.json -------------------------------------------------------------------------------- /microservices/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/nest-cli.json -------------------------------------------------------------------------------- /microservices/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/package-lock.json -------------------------------------------------------------------------------- /microservices/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/package.json -------------------------------------------------------------------------------- /microservices/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/tsconfig.build.json -------------------------------------------------------------------------------- /microservices/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/microservices/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanashi1526/smartcity-dashboard/HEAD/tsconfig.json --------------------------------------------------------------------------------