Skip to content

Commit

Permalink
Merge pull request #4 from NashTech-Labs/feature/UI
Browse files Browse the repository at this point in the history
Feature/UI
  • Loading branch information
DeepaMitta authored Jun 13, 2024
2 parents 6e62b22 + 5ab16e6 commit f9d6cdc
Show file tree
Hide file tree
Showing 17 changed files with 220 additions and 505 deletions.
58 changes: 39 additions & 19 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,24 +1,44 @@
# Compiled class file
*.class
# See http://help.github.com/ignore-files/ for more about ignoring files.

# Log file
*.log
# Compiled output
/dist
/tmp
/out-tsc
/bazel-out

# BlueJ files
*.ctxt
# Node
/node_modules
npm-debug.log
yarn-error.log

# Mobile Tools for Java (J2ME)
.mtj.tmp/
# IDEs and editors
.idea/
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
# Visual Studio Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
replay_pid*
# Miscellaneous
/.angular/cache
.sass-cache/
/connect.lock
/coverage
/libpeerconnection.log
testem.log
/typings

# System files
.DS_Store
Thumbs.db

package-lock.json
3 changes: 3 additions & 0 deletions blogs-analyzer-ui/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,5 +100,8 @@
}
}
}
},
"cli": {
"analytics": false
}
}
1 change: 1 addition & 0 deletions blogs-analyzer-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"@angular/platform-browser": "^16.0.0",
"@angular/platform-browser-dynamic": "^16.0.0",
"@angular/router": "^16.0.0",
"@angular/material": "^16.1.1",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
Expand Down
8 changes: 7 additions & 1 deletion blogs-analyzer-ui/src/app/app-routing.module.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import {DashboardComponent} from "./dashboard/dashboard.component";

const routes: Routes = [];
const routes: Routes = [
{
path: '',
component: DashboardComponent
},
];

@NgModule({
imports: [RouterModule.forRoot(routes)],
Expand Down
Loading

0 comments on commit f9d6cdc

Please sign in to comment.