Skip to content

Commit

Permalink
added ngx-bootstrap and appwrite dependencies also set local environe…
Browse files Browse the repository at this point in the history
…mnts
  • Loading branch information
jannmichael.albite committed Jul 27, 2023
1 parent e703b6f commit 4b750fa
Show file tree
Hide file tree
Showing 7 changed files with 171 additions and 7 deletions.
11 changes: 10 additions & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,13 @@
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
"namedChunks": true,
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.development.ts"
}
]
}
},
"defaultConfiguration": "production"
Expand Down Expand Up @@ -100,5 +106,8 @@
}
}
}
},
"cli": {
"analytics": "bd6feb4b-c26c-4672-ae36-eb76d2041ba5"
}
}
152 changes: 147 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
"@angular/platform-browser": "^16.1.0",
"@angular/platform-browser-dynamic": "^16.1.0",
"@angular/router": "^16.1.0",
"appwrite": "^11.0.0",
"bootstrap": "^5.2.3",
"ngx-bootstrap": "11.0.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
Expand Down
4 changes: 3 additions & 1 deletion src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,16 @@ import { BrowserModule } from '@angular/platform-browser';

import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';

@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
AppRoutingModule
AppRoutingModule,
BrowserAnimationsModule
],
providers: [],
bootstrap: [AppComponent]
Expand Down
1 change: 1 addition & 0 deletions src/environments/environment.development.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const environment = {};
1 change: 1 addition & 0 deletions src/environments/environment.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const environment = {};
6 changes: 6 additions & 0 deletions src/styles.scss
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
/* You can add global styles to this file, and also import other style files */

/* Importing Bootstrap SCSS file. */
@import "./node_modules/bootstrap/scss/bootstrap";

/* Importing Datepicker SCSS file. */
@import "node_modules/ngx-bootstrap/datepicker/bs-datepicker";

0 comments on commit 4b750fa

Please sign in to comment.