Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Anis KCHAOU committed Apr 25, 2021
1 parent 5188026 commit d1e70c9
Show file tree
Hide file tree
Showing 15 changed files with 625 additions and 207 deletions.
53 changes: 52 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,66 @@

Computer project is a web application that allows the management of the maintenance operation in a repair shop for digital devices (mobile phones, personal computer, etc.)




<p align="center">
<img src="screenshots/logo.png"/>
</p>



## Introduction

Library lab is a web application for managing a library by making it easier to borrow books from readers. This application is a virtual version of a real bookstore.

## Informations :
- Status: under development
- Lastest version 1.0
- Sector: industry
- Created: December 2020
- Last updated: December 2020


## Table of contents
* [Documentation](#general-info)
* [Demo](#demo)
* [Screenshots](#screenshots)
* [Technologies](#technologies)
* [Setup](#setup)
* [Features](#features)
* [Status](#status)
* [Contact](#contact)
* [License](#license)

## Documentation
https://github.com/aniskchaou/COMPUTER-PROJECT-FRONTEND-ADMIN/wiki

## Demo
https://computer-project.herokuapp.com/

## Screenshots
<p align="center">
<img src="screenshots/screenshot.png"/>
<p>

## Technologies
* Spring boot
* Angular


## Setup


## Modules:
- Manage products
- Manage suppliers
- Manage clients
- Manage invoices



## Contact
[email protected]

## License
<a href="license.txt">MIT License</a>
21 changes: 21 additions & 0 deletions license.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) [year] [fullname]

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.
Binary file added screenshots/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 24 additions & 18 deletions src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,26 +48,30 @@ import { ViewSupplierComponent } from './modules/supplier/components/view-suppli
import { AddUsedTelephoneComponent } from './modules/usedphone/usedphone/add-used-telephone/add-used-telephone.component';
import { EditUsedTelephoneComponent } from './modules/usedphone/usedphone/edit-used-telephone/edit-used-telephone.component';
import { ViewUsedPhoneComponent } from './modules/usedphone/usedphone/view-used-phone/view-used-phone.component';
import { CellularplanComponent } from './modules/stock/cellularplan/cellularplan.component';
import { OtherproductComponent } from './modules/stock/otherproduct/otherproduct.component';



const routes:Routes=[
const routes: Routes = [

{path:'client',component:ClientComponent},
{path:'product',component:ProduitComponent},
{path:'stock',component:StockComponent},
{path:'newphone',component:NewTelephoneComponent},
{path:'fix',component:FixComponent},
{path:'usedphone',component:UsedTelephoneComponent},
{path:'part',component:PartComponent},
{path:'buyclient',component:BuyclientComponent},
{path:'supplier',component:SupplierComponent},
{path:'accessory',component:AccessoryComponent},
{path:'dashboard',component:DashboardComponent},
{path:'login',component:LoginComponent},
{path:'configuration',component:ConfigurationComponent},
{path:'',redirectTo:'login',pathMatch:'full'},
{path:'**',redirectTo:'login',pathMatch:'full'}]
{ path: 'client', component: ClientComponent },
{ path: 'product', component: ProduitComponent },
{ path: 'stock', component: StockComponent },
{ path: 'newphone', component: NewTelephoneComponent },
{ path: 'fix', component: FixComponent },
{ path: 'usedphone', component: UsedTelephoneComponent },
{ path: 'part', component: PartComponent },
{ path: 'buyclient', component: BuyclientComponent },
{ path: 'supplier', component: SupplierComponent },
{ path: 'accessory', component: AccessoryComponent },
{ path: 'dashboard', component: DashboardComponent },
{ path: 'login', component: LoginComponent },
{ path: 'otherproducts', component: OtherproductComponent },
{ path: 'cellularplans', component: CellularplanComponent },
{ path: 'configuration', component: ConfigurationComponent },
{ path: '', redirectTo: 'login', pathMatch: 'full' },
{ path: '**', redirectTo: 'login', pathMatch: 'full' }]


@NgModule({
Expand Down Expand Up @@ -116,13 +120,15 @@ const routes:Routes=[
ViewProductComponent,
ViewStockComponent,
ViewSupplierComponent,
ViewUsedPhoneComponent
ViewUsedPhoneComponent,
CellularplanComponent,
OtherproductComponent
],
imports: [
BrowserModule,
RouterModule.forRoot(routes)
],
providers: [{provide: APP_BASE_HREF, useValue: ''}],
providers: [{ provide: APP_BASE_HREF, useValue: '' }],
bootstrap: [AppComponent]
})
export class AppModule { }
Loading

0 comments on commit d1e70c9

Please sign in to comment.