https://github.com/soumyaprasadrana/vmassignmentportal
VM Assignment Portal
https://github.com/soumyaprasadrana/vmassignmentportal
angular angular12 angular2 angularjs api corporate-tools docker enterprise express java management mysql node rest saas team tools vm webapp
Last synced: 2 months ago
JSON representation
VM Assignment Portal
- Host: GitHub
- URL: https://github.com/soumyaprasadrana/vmassignmentportal
- Owner: soumyaprasadrana
- License: mit
- Created: 2021-06-21T14:58:30.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-11-09T17:54:20.000Z (over 2 years ago)
- Last Synced: 2026-01-03T14:24:26.746Z (6 months ago)
- Topics: angular, angular12, angular2, angularjs, api, corporate-tools, docker, enterprise, express, java, management, mysql, node, rest, saas, team, tools, vm, webapp
- Language: TypeScript
- Homepage:
- Size: 45.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
VM Assignment Portal
[]()
[](https://github.com/soumyaprasadrana/VMAssignmentPortal/issues)
[](https://github.com/soumyaprasadrana/VMAssignmentPortal/pulls)
[](/LICENSE)
---
In organizational level we use large no of VMs for our day today work, this portal will help to keep a track on usage of each and every vm.
## 📝 Table of Contents
- [About](#about)
- [Getting Started](#getting_started)
- [Deployment](#deployment)
- [Authors](#authors)
- [Acknowledgments](#acknowledgement)
- [License](#license)
VM Assignment Portal is created to easily manage all VM related activities within a team. Entries of VMs can be created in this portal and then various operations like Assign, Release etc. can be performed.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See [deployment](#deployment) for notes on how to deploy the project on a live system.
### Prerequisites
- Node 14 +
- Angular 12+
- Docker & Docker Compose ( Production SaaS )
- VM Assignment Portal API ( See VM Management Portal API Project's [Readme](https://github.com/soumyaprasadrana/VMManagementPortalAPI#readme) )
## Installing
Check Pre-requisites , VM Assignment portal Server must be running before using this project
### Dev Enviroment
```
git clone https://github.com/soumyaprasadrana/VMAssignmentPortal.git
cd {repositoryPath}
npm install
cd server
npm install
```
Open project in visual studio code and open two terminals run
1. ```
.\node_modules\.bin\ng.cmd build --configuration="development" --watch
```
2. ```
cd server
node app.js
```
### Prod Enviroment
```
git clone https://github.com/soumyaprasadrana/VMAssignmentPortal.git
cd {repositoryPath}
npm run build-prod
cd build/server
set APIBASE="http://localhost:8080/VMMangementPortalAPI
node app
```
### Prod Enviroment ( SaaS - Docker )
Pre-requisite- Docker Compose
```
git config --global core.autocrlf false
git clone https://github.com/soumyaprasadrana/VMAssignmentPortal.git
cd {repositoryPath}
npm run build-prod
cd build\docker\saas
cd portal-api
docker build -t portal_api:1.0 .
cd ..
cd portal-ui
docker build -t portal_ui:1.0 .
cd ..
cd portal-db
docker build -t portal_db:1.0 .
cd ..
git config --global core.autocrlf true
docker-compose up
```
Access the application by http://localhost:3000/
- [Express](https://expressjs.com/) - Server Framework
- [Angular](https://angular.io/) - Web Framework
- [NodeJs](https://nodejs.org/en/) - Server Environment
- [@soumya](https://github.com/soumyaprasadrana) - Architecture & Devlopment
See also the list of [contributors](https://github.com/soumyaprasadrana/VMAssignmentPortal/contributors) who participated in this project.
- Hat tip to anyone whose code was used
- Inspiration
- References
## Known Dev Env Issues
https://stackoverflow.com/questions/52801814/this-syntax-requires-an-imported-helper-but-module-tslib-cannot-be-found-wit
MIT License
Copyright (c) 2022 soumya
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:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
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.
