Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
.DS_Store
node_modules
/dist

# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
74 changes: 25 additions & 49 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,49 +1,25 @@

<p align="center">
<img src="https://globalline.my/static/logo.png" width="200">
</p>


Thanks for taking the time to do our front-end / full-stack practical coding challenge.

The objective of this challenge is to evaluate your domain knowledge in front-end / full-stack development: code organization, style and best practices.

# Overview:
The main challenge will be to build a simple user management tool that will perform basic CRUD operations on a user. Please use mockups as a reference
about look of the application. There are no business rules & guidelines other than to show us what you’re truly made of. It can be as simple or as complex as you want it to be.

### Prerequisites
There are none :) Our main solutions stack include but not limited to Kotlin, Java, AngularJS, Flutter, Spring...
Feel free to use any languages and technologies you are comfortable with.

## Mockups
<p align="center">
<img src="https://globalline.my/static/1.jpg" width="250">
<img src="https://globalline.my/static/2.jpg" width="250">
<img src="https://globalline.my/static/3.jpg" width="250">
</p>

### Front-end:
- For API please use https://reqres.in/.

### Back-end:
- The API should be similar to https://reqres.in/, performing basic operations for user.

_We'll be happy if you cover application with tests._

### Submission Guidelines
- Please fork the repo and then submit a Pull Request when you are done.
- Instructions must be provided to run the application, install any dependencies, and any other information needed.
- Please use version control and make sure we can see the history of how you went about it, rather than just uploading the complete project to GitHub.

## Questions? ###
Please feel free to reach out and ask any questions while you are working on a solution.
Send your questions to [[email protected]](mailto:[email protected]).


Good luck!





# coding-challenge

To run the app: npm run serve
## Project setup
```
npm install
```

### Compiles and hot-reloads for development
```
npm run serve
```

### Compiles and minifies for production
```
npm run build
```

### Lints and fixes files
```
npm run lint
```

### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).
5 changes: 5 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
]
}
Loading