Skip to content

Commit

Permalink
iniciando el repo
Browse files Browse the repository at this point in the history
  • Loading branch information
jdanielgoh committed Feb 21, 2023
1 parent fc8131d commit 21b2426
Show file tree
Hide file tree
Showing 27 changed files with 354,798 additions and 7,315 deletions.
7 changes: 7 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
NODE_ENV = development
VUE_APP_TITLE = local
VUE_APP_DESCRIPTION = local | descripcion
VUE_APP_ENI_DOMAIN = http://localhost:8080
VUE_APP_BASE_ROUTE = /
VUE_APP_HASH = true
VUE_APP_MATOMO_SITEID = 0
6 changes: 6 additions & 0 deletions .env.production
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
NODE_ENV = production
VUE_APP_TITLE = defunciones-infancia
VUE_APP_DESCRIPTION = Analizamos las causas de defunciones de niñas, niños y adolescentes en México a través del tiempo
VUE_APP_DOMAIN = https://tirandocodigo.mx
VUE_APP_BASE_ROUTE = /proyectos/defunciones_infancia/
VUE_APP_HASH = true
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# web-defunciones
# web-defunciones-infancia

## Project setup
```
Expand Down
10,151 changes: 2,934 additions & 7,217 deletions package-lock.json

Large diffs are not rendered by default.

21 changes: 13 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,29 @@
{
"name": "web-defunciones",
"name": "web-defunciones-infancia",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build"
},
"dependencies": {
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.6.5",
"d3": "^7.5.0",
"leaflet": "^1.8.0",
"leaflet.sync": "^0.2.4",
"leaflet.tilelayer.colorfilter": "^1.2.5",
"vue": "^2.6.11",
"vue-router": "^3.2.0",
"vue-router": "^3.5.4",
"vuex": "^3.4.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.15",
"@vue/cli-plugin-router": "~4.5.15",
"@vue/cli-plugin-vuex": "~4.5.15",
"@vue/cli-service": "~4.5.15",
"node-sass": "^4.12.0",
"sass-loader": "^8.0.2",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-router": "^5.0.8",
"@vue/cli-plugin-vuex": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"sass": "^1.32.7",
"sass-loader": "^12.0.0",
"vue-template-compiler": "^2.6.11"
},
"browserslist": [
Expand Down
37 changes: 26 additions & 11 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,32 +1,47 @@
<template>
<div id="app">
<div id="nav">
<router-link to="/">Home</router-link> |
<router-link to="/about">About</router-link>
</div>

<router-view/>
</div>
</template>

<style lang="scss">
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
#app, svg > text {
font-family: 'Source Sans Pro', sans-serif; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
color: black;
}
body{
margin: 0;
background: rgba(255,255,255,.7);
}
#nav {
padding: 30px;
a {
font-weight: bold;
color: #2c3e50;
color: black;
&.router-link-exact-active {
color: #42b983;
}
}
}
h1{
font-size: 30px;
margin-top: 0px;
margin-bottom:10px
}
@media (max-width: 768px) {
h1{
font-size: 24px
}
}
.pie{
p{
b{
font-weight: 700;
}
}
}
</style>
Binary file added src/assets/audios/06152021_911Call_1_JOSUE.mp3
Binary file not shown.
Binary file added src/assets/audios/06152021_911Call_2_GERONIMO.mp3
Binary file not shown.
Binary file added src/assets/audios/07242021_911Call_JONATHAN.mp3
Binary file not shown.
Binary file added src/assets/audios/07262021_911Call_LOURDES.mp3
Binary file not shown.
Binary file added src/assets/audios/08032021_911Call_GUADELUPE.mp3
Binary file not shown.
Binary file added src/assets/audios/08292021_911Call_GERSON.mp3
Binary file not shown.
Binary file added src/assets/audios/09152021_911Call_ALFREDO.mp3
Binary file not shown.
Binary file added src/assets/audios/09212021_911Call_JESUS.mp3
Binary file not shown.
1 change: 1 addition & 0 deletions src/assets/data/catalogo.json

Large diffs are not rendered by default.

Loading

0 comments on commit 21b2426

Please sign in to comment.