Skip to content
This repository has been archived by the owner on May 5, 2020. It is now read-only.
/ yolosparo Public archive

Campaña para parar la ley de hidrocarburos que promueve el fracking en Argentina

Notifications You must be signed in to change notification settings

piratas-ar/yolosparo

Repository files navigation

yolosparo

Campaña para parar la ley de hidrocarburos que promueve el fracking en Argentina

Requirements

  • MySQL 5

Installation

$ npm install
$ node index.js

App available at http://localhost:3000

The application uses express.js 3.5 as the web framework and handlebars as the template engine.

Set up database

Before running the app you need to set up the database. Open your mysql client and execute the following statements:

  create database yolosparo_dev;
  grant all privileges on yolosparo_dev.*
    to 'yolosparo'@'localhost'
    identified by 'yolosparo';