Skip to content

Commit dcbe527

Browse files
committed
created a .md files with basic content
1 parent d6ca7e9 commit dcbe527

File tree

1 file changed

+109
-1
lines changed

1 file changed

+109
-1
lines changed

README.md

Lines changed: 109 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,109 @@
1-
# Angular Masterpage
1+
# Angular Masterpage
2+
3+
4+
# Table of contents
5+
- [Introduction](#introduction)
6+
- [Environment](#environment)
7+
- [Tech Stack](#tech-stack)
8+
- [How to run the application](#how-to-run-the-application)
9+
- [Issues](#issues)
10+
- [References](#references)
11+
- [Licence](#licence)
12+
13+
14+
# Introduction
15+
16+
A mobile-friendly angular 2+ website developed using latest web development technologies such as HTML5, CSS Grid-layout and Flexbox models, together with the implemetation of Angular concepts such as Lazy-loading, SSR, to enhance the performance and search angine optimization.
17+
18+
19+
[Back to top](#table-of-contents)
20+
21+
# Environment
22+
23+
- Operating System - Windows 11 x64
24+
- Angular CLI - v19.2.7
25+
- Visual Studio Code
26+
- Node.js - v20.11.1
27+
- GitHub & Git Bash
28+
- Angular DevTool
29+
- Postman
30+
31+
[Back to top](#table-of-contents)
32+
33+
# Tech stack
34+
- Responsive Web Design ( HTML5 | SCSS | Grid Layout | Flexbox model | Bootstrap5 | Toggle theme ).
35+
- Angular/Typescript framework - v18.2.11
36+
- Stand-alone Approach (not module-based)
37+
- Angular Routing:
38+
- Child routes
39+
- Lazy-loading
40+
- SEO (Angular Universal | Title Interface | Meta Interface)
41+
42+
- Features:
43+
- Toggle themes (Dark vs Light)
44+
- Validated submission form (email integrated)
45+
46+
47+
[Back to top](#table-of-contents)
48+
49+
# How to run the application
50+
51+
### 1. Installation
52+
Ensure that you have following items are installed in your computer:
53+
54+
- Visual Studio Code
55+
- Node.js
56+
- Angular CLI
57+
58+
### 2. Clone `GitHub` repository
59+
60+
Clone the project from Github repository into your local repository: [ Vehicle Tracking System ](https://github.com/mystackbox/prj-Mabunda Group). For more information about how to clone the GitHub repository, see [Cloning GitHub repository](https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository).
61+
62+
### 3. Update Google Maps API Key
63+
Ensure that your in possession of Google Maps API Key. Open index.html in the source directory of the project and replace `YOUR_API_KEY` with your Google Maps API Key.
64+
65+
```javascript
66+
<script async src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&loading=async&callback=Function.prototype&v=weekly"></script>
67+
```
68+
### 4. Start the Localhost server
69+
70+
Run the following command in your `CLI` to install all the rrequired packages:
71+
```javascript
72+
npm install
73+
```
74+
Run the following command in your `CLI` to start the `localhost` server.
75+
```javascript
76+
ng serve
77+
```
78+
Once the `localhost` server is running, navigate to `http://localhost:4200/` or copy/paste `http://localhost:4200/` in your browser address-bar, then press enter.
79+
80+
[Back to top](#table-of-contents)
81+
82+
# Issues
83+
- The application uses Google Maps services which requires the APK Key. This means that you will to have a Google Maps API Key for Google Maps to launch.
84+
- Unit Testing has not been implemented yet.
85+
86+
[Back to top](#table-of-contents)
87+
88+
# References
89+
90+
- For more information related to Angular setup, please check out the [Angular documentation](https://angular.io/docs) page.
91+
- For more information related to Angular CLI, please check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
92+
- For more information related to Node.js, please check out the [Introduction to Node.js](https://nodejs.org/en/learn/getting-started/introduction-to-nodejs) page.
93+
- For more information related to Node Package Manager (NPM), please check out the [npm Docs](https://docs.npmjs.com/) page.
94+
95+
[Back to top](#table-of-contents)
96+
97+
# Licence
98+
99+
MIT License
100+
101+
Copyright (c) 2024 | Yingisani
102+
103+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
104+
105+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
106+
107+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE..
108+
109+
[Back to top](#table-of-contents)

0 commit comments

Comments
 (0)