Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Producto final E-commerse #6

Open
wants to merge 20 commits into
base: master
Choose a base branch
from
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
29 changes: 29 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"parserOptions": {
"ecmaVersion": 6
},
"rules": {
"keyword-spacing": 1,
"space-before-function-paren": [1, "never"],
"eqeqeq": 1,
"space-infix-ops": 1,
"comma-spacing": 1,
"brace-style": 1,
"no-multiple-empty-lines": 1,
"camelcase": 1,
"func-call-spacing": 1,
"key-spacing": 1,
"semi": 1,
"no-floating-decimal": 1,
"no-multi-spaces": 1,
"object-property-newline": 1,
"padded-blocks": [1, "never"],
"space-before-blocks": 1,
"space-in-parens": 1,
"spaced-comment": 1,
"quotes": [1, "single"],
"id-length": [1, { "exceptions": ["i", "j", "x"] }],
"indent": [1, 2],
"no-array-constructor": 1
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
63 changes: 47 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,56 @@
# E-commerce

* **Track:** _Especialización Front-end_
* **Curso:** _CONSTRUYE UNA SINGLE PAGE APP (SPA) MULTI-USUARIO CONSUMIENDO DATA REMOTA_
* **Unidad:** _Producto final_
### Objetivo:

***
* crear un Single Page Application haciendo uso de APIs de mercado libre y papal.

## Flujo de trabajo
![Sin titulo](public/assets/docs/alcatel.PNG)

1. Debes realizar un [**fork**](https://gist.github.com/ivandevp/1de47ae69a5e139a6622d78c882e1f74)
de este repositorio.

2. Luego deberás **clonar** tu fork en tu máquina. Recuerda que el comando a usar
es `git clone` y su estructura normalmente se ve así:
### Proceso

```bash
git clone https://github.com/<nombre-de-usuario>/freelancer.git
```
1. Delimitar el tema para crear el sitio web.
2. Hacer el diseño del sitio web e-commerce
3. Obtener la data de la API de mercado libre.

3. Cuando hayas terminado tu producto, envía un Pull Request a este repositorio
(puedes solicitar apoyo de tus profes para este paso).
## Stack utilizado

> Nota: No olvides que es una buena práctica describir tu proyecto en este
> archivo `README.md` y también desplegar tu web a Github Pages :smiley:.
- Node.js

- Express
[Express - Hello Wordl](http://expressjs.com/en/starter/hello-world.html)
[Express - Basic Routing](http://expressjs.com/en/starter/basic-routing.html)
[Express - Static Files](http://expressjs.com/en/starter/static-files.html)

- Jquery

- Ajax

## Comenzar con el proyecto

Para inicializar el proyecto debes tener node instalado, para correrlo en un servidor local, encontrarás un archivo `package.json`, donde se encuentran las dependencias y configuración.
Para primero deberás instalar las dependecias con el comando.

```
npm install
```

Ahora debes instalar nodemon con el siguiente comando

```
npm install nodemon -g --save
```

Luego levantas el servidor a través de este comando

```
npm start
```

### Desarollado para

[Laboratoria](http://laboratoria.la)

#### Integrantes:
- Betsy Vidal
- Melyna Pernia
13 changes: 13 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
const express = require('express');
const app = express();

var port = process.env.PORT || 8080;

app.use(express.static(__dirname + '/views'));
app.use(express.static(__dirname + '/public'));

app.get('/', function(req, res) {
res.sendfile('index.html');
});

app.listen(port);
Loading