An URL shortener is a type of software service that allows you to use short URLs which redirect to the original URL. The origin of this type of service is to make the URL more manageable and easy to share and remember.It is used primarily to shorten deep links, which by their nature are often long. This project seeks to make one with the following tools. We are going to be using Vue.js for the front-end and Node-js for the back-end.
Name | GitHub | Rol |
---|---|---|
Juliana Rojas Naranjo | ayurojasn | Manager & Full-stack developer |
Sebastian Guarnizo Campos | sebastian0912 | Full-stack developer |
Luisa Lorena Parra | parraluisa | Full-stack developer |
Nelson Mosquera | monotera | Full-stack developer (aboutUs section FrontEnd) |
You must have npm and vue installed
Here is a guide for installing npm https://nodejs.org/es/download/package-manager/
After installing npm, just run the npm install vue
command
If you want to have a view of the project with a graphical interface, you can install vue cli with the following command npm install -g @vue/cli
- Clone the repository.
- You will find the
package.json
. You can runnpm i
to install the dependencies.
- vue
- core-js
- sass-loader
- vue-router
- vuex
- roboto-fontface
- vue2-smooth-scroll
- vuetify
- babel-eslint
- eslint
- eslint-plugin-vue
- vue-template-compiler
- Compiles and hot-reloads for development
npm run serve
- Run vue graphic interface
vue ui
- Compiles and minifies for production
npm run build
- Lints and fixes files
npm run lint
If you have tasks to complete, please follow these steps:
- Create your own branch
git checkout -b feature/ticket-title
. - Complete your task.
- Run
npm run serve
openhttp://localhost:8080
and test your component's task. Test it with multiple browsers. - Create the PR.