Commit 7670c5ce authored by Administrator's avatar Administrator
Browse files

initial commit

parent 2eb00487
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -5,6 +5,7 @@
/tmp
/tmp
/out-tsc
/out-tsc
/bazel-out
/bazel-out
.angular


# Node
# Node
/node_modules
/node_modules

.prettierrc

0 → 100644
+8 −0
Original line number Original line Diff line number Diff line
{
  "printWidth": 130,
  "singleQuote": true,
  "tabWidth": 2,
  "trailingComma": "all",
  "semi": true,
  "bracketSpacing": true
}
+9 −9
Original line number Original line Diff line number Diff line
# NgCalenderApp
# NgCalenderApp


This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 18.1.1.
This app uses in memory db for creating, deleting and editing and getting calendar events. For simplicity only 1 hr events can be created


## Development server
# Dev Dependencies


Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files.
**ANGULAR: v18.1.1**
**NODE.JS: v22.5.1**
**NPM: v10.8.2**


## Code scaffolding
## Development server


Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
1. Run `npm i` if node_modules are not installed
2. Run `npm start` on root of this project
3. After build app will be accessible on [Live Server](http://localhost:4200)


## Build
## Build


@@ -21,7 +25,3 @@ Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.
## Running end-to-end tests
## Running end-to-end tests


Run `ng e2e` to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.
Run `ng e2e` to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.

## Further help

To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.dev/tools/cli) page.
+5 −14
Original line number Original line Diff line number Diff line
@@ -12,7 +12,7 @@
      },
      },
      "root": "",
      "root": "",
      "sourceRoot": "src",
      "sourceRoot": "src",
      "prefix": "app",
      "prefix": "cal",
      "architect": {
      "architect": {
        "build": {
        "build": {
          "builder": "@angular-devkit/build-angular:application",
          "builder": "@angular-devkit/build-angular:application",
@@ -20,9 +20,7 @@
            "outputPath": "dist/ng-calender-app",
            "outputPath": "dist/ng-calender-app",
            "index": "src/index.html",
            "index": "src/index.html",
            "browser": "src/main.ts",
            "browser": "src/main.ts",
            "polyfills": [
            "polyfills": ["zone.js"],
              "zone.js"
            ],
            "tsConfig": "tsconfig.app.json",
            "tsConfig": "tsconfig.app.json",
            "inlineStyleLanguage": "scss",
            "inlineStyleLanguage": "scss",
            "assets": [
            "assets": [
@@ -31,9 +29,7 @@
                "input": "public"
                "input": "public"
              }
              }
            ],
            ],
            "styles": [
            "styles": ["@angular/material/prebuilt-themes/azure-blue.css", "src/styles.scss"],
              "src/styles.scss"
            ],
            "scripts": []
            "scripts": []
          },
          },
          "configurations": {
          "configurations": {
@@ -78,10 +74,7 @@
        "test": {
        "test": {
          "builder": "@angular-devkit/build-angular:karma",
          "builder": "@angular-devkit/build-angular:karma",
          "options": {
          "options": {
            "polyfills": [
            "polyfills": ["zone.js", "zone.js/testing"],
              "zone.js",
              "zone.js/testing"
            ],
            "tsConfig": "tsconfig.spec.json",
            "tsConfig": "tsconfig.spec.json",
            "inlineStyleLanguage": "scss",
            "inlineStyleLanguage": "scss",
            "assets": [
            "assets": [
@@ -90,9 +83,7 @@
                "input": "public"
                "input": "public"
              }
              }
            ],
            ],
            "styles": [
            "styles": ["@angular/material/prebuilt-themes/azure-blue.css", "src/styles.scss"],
              "src/styles.scss"
            ],
            "scripts": []
            "scripts": []
          }
          }
        }
        }
Loading