Skip to content

Instantly share code, notes, and snippets.

View IvanSotelo's full-sized avatar
:octocat:
Currently working with: Laravel, Vue.js, GraphQL, Flutter, NodeJs.

Ivan Sotelo IvanSotelo

:octocat:
Currently working with: Laravel, Vue.js, GraphQL, Flutter, NodeJs.
View GitHub Profile
[
"isotelo@controlla.com.mx",
"amora@controlla.com.mx",
"rortega@controlla.com.mx",
"cmanzano@controlla.com.mx",
"arangel@controlla.com.mx",
"asalaices@controlla.com.mx",
"gdelgado@controlla.com.mx",
"mtejada@controlla.com.mx",
"glozano@controlla.com.mx",
version: "3"
services:
sonarqube:
image: sonarqube:community
depends_on:
- db
environment:
SONAR_JDBC_URL: jdbc:postgresql://db:5432/sonar
SONAR_JDBC_USERNAME: sonar

Category -- Modelos

- Tipo Descripción
id integer Identificador único del modelo.
layer_id string Identificador para el mapa interactivo.
title string Nombre del modelo de la casa.
image string Imagen de la casa.
about string Descripcion del modelo de la casa.
total_price integer Precio de la casa.
@IvanSotelo
IvanSotelo / index.js
Created July 30, 2018 15:53
Instancia Vue-i18n
import Vue from 'vue'
import VueI18n from 'vue-i18n'
import en from './locals/en_US'
import es from './locals/es_MX'
Vue.use(VueI18n)
export default new VueI18n({
locale: 'en',
messages: {
@IvanSotelo
IvanSotelo / lang.json
Created July 30, 2018 15:49
Languages jsons
// en_US.json
{
"notice": {
"msg": "You have message"
}
}
// es_MX.json
{
"notice": {
@IvanSotelo
IvanSotelo / main.js
Created July 30, 2018 15:18
Configuración Vue-i18n
import Vue from 'vue'
import App from './App'
import router from './router'
import i18n from './lang'
Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
el: '#app',