This file contains hidden or 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
""" | |
Django settings for tienda project. | |
Generated by 'django-admin startproject' using Django 1.11b1. | |
For more information on this file, see | |
https://docs.djangoproject.com/en/dev/topics/settings/ | |
For the full list of settings and their values, see | |
https://docs.djangoproject.com/en/dev/ref/settings/ |
This file contains hidden or 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
''' | |
Avoid code duplication for functions | |
1) solve duplcation | |
2) Avoid mix function main logic porpuse | |
''' | |
import time | |
''' | |
Decorator function: |
This file contains hidden or 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
const webpack = require('webpack'); | |
const UglifyJsPlugin = require('uglifyjs-webpack-plugin'); | |
module.exports = { | |
entry:[ | |
'./app.jsx' | |
], | |
output:{ | |
filename:'../pecsa.bundle.js' | |
}, |
OlderNewer