-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Anis KCHAOU
committed
Apr 24, 2021
1 parent
28ffd7f
commit 2b3b9a3
Showing
26 changed files
with
239 additions
and
56 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
/dist | ||
# testing | ||
/coverage | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,62 @@ | ||
# Up Recruit | ||
<p align="center"> | ||
<img src="screenshots/logo.png"/> | ||
</p> | ||
|
||
|
||
|
||
## Introduction | ||
|
||
Up recruit is a web application that allows you to manage the staff recruitment process for companies. | ||
|
||
## Informations | ||
- Status : under development | ||
- Latest version: 1.0 | ||
- Sector: industry | ||
- Created: November 2020 | ||
- Last updated: December 2020 | ||
- Status: under development | ||
- Version: 1.0 | ||
- Sector: industry | ||
- Created: November 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/UPRECRUIT-FRONTEND-ADMIN/wiki | ||
|
||
## Demo | ||
https://up-recruit.herokuapp.com/ | ||
|
||
## Screenshots | ||
<p align="center"> | ||
<img src="screenshots/screenshot.png"/> | ||
<p> | ||
|
||
## Technologies | ||
* Spring boot | ||
* React.js | ||
|
||
|
||
## Setup | ||
|
||
|
||
## Features | ||
- Select products by category | ||
- View the product details | ||
- Add a product to the cart | ||
- Manage cart | ||
- Search for products | ||
- Check out the product | ||
|
||
|
||
|
||
## Contact | ||
contact@delta-dev-software.com | ||
|
||
## Modules | ||
- Prepare the recruitment operation | ||
- Create application files | ||
- Follow new recruits within the company | ||
## License | ||
<a href="license.txt">MIT License</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
export default class User { | ||
static USER_NAME = "Admin" | ||
static CONNECTED_USER = false | ||
static USER_LANG = "en" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"field1": "Nom de demandeur", | ||
"field2": "Email", | ||
"field3": "Mobile", | ||
"field4": "Actions" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"field1": "Name", | ||
"field2": "Email Address", | ||
"field3": "Mobile Phone", | ||
"field4": "Actions" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"id": 1, | ||
"name": "Vigo", | ||
"picture": "./static/images/vigo.png", | ||
"charges": "PKR 100 per excess km" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"id": 1, | ||
"name": "Vigo", | ||
"picture": "./static/images/vigo.png", | ||
"charges": "PKR 100 per excess km" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"id": 1, | ||
"name": "Vigo", | ||
"picture": "./static/images/vigo.png", | ||
"charges": "PKR 100 per excess km" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"id": 1, | ||
"name": "Vigo", | ||
"picture": "./static/images/vigo.png", | ||
"charges": "PKR 100 per excess km" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"id": 1, | ||
"name": "Vigo", | ||
"picture": "./static/images/vigo.png", | ||
"charges": "PKR 100 per excess km" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"id": 1, | ||
"name": "Vigo", | ||
"picture": "./static/images/vigo.png", | ||
"charges": "PKR 100 per excess km" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"id": 1, | ||
"name": "Vigo", | ||
"picture": "./static/images/vigo.png", | ||
"charges": "PKR 100 per excess km" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"id": 1, | ||
"name": "Vigo", | ||
"picture": "./static/images/vigo.png", | ||
"charges": "PKR 100 per excess km" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"name": "Vigo", | ||
"picture": "./static/images/vigo.png", | ||
"charges": "PKR 100 per excess km" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
const BASE_URL = 'https://jsonplaceholder.typicode.com/' | ||
|
||
export default BASE_URL | ||
export default BASE_URL | ||
const BACKEND_TECHNOLOGY = "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters