Skip to content

Commit

Permalink
Copy Repository from foss4g-ar
Browse files Browse the repository at this point in the history
  • Loading branch information
juanblas09 committed Apr 14, 2020
1 parent 1c602a9 commit 462d91e
Show file tree
Hide file tree
Showing 69 changed files with 8,457 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"presets": ["es2015"]
}
12 changes: 12 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"parser": "babel-eslint",
"extends": "airbnb-base",
"env": {
"browser": true,
"es6": true,
"node": true
},
"globals": {
"Handlebars": true,
},
}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
dist
npm-debug.log
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
# sotm-ar-2017
Sitio del State of the Map Argentina - Posadas 2020
# Sitio web de la conferencia FOSS4G Argentina

### Cómo hacerlo andar localmente:

1. `git clone https://github.com/geoinquietos-ar/foss4g-ar.git`
1. `npm install`
1. `npm run serve`
46 changes: 46 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"name": "foss4g-ar",
"version": "1.0.0",
"description": "Sitio web de la conferencia FOSS4G Argentina",
"main": "dist/main.js",
"repository": {
"url": "[email protected]:geoinquietos-ar/foss4g-ar.git",
"type": "git"
},
"scripts": {
"serve": "webpack-dev-server --hot --inline",
"build": "NODE_ENV='production' webpack",
"deploy": "npm run build && gh-pages-clean && gh-pages -d dist",
"deploy-upstream": "npm run build && gh-pages-clean && gh-pages -d dist -r [email protected]:geoinquietos-ar/foss4g-ar.git"
},
"author": "Mauricio Miranda <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.1.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.18.0",
"copy-webpack-plugin": "^4.0.0",
"css-loader": "^0.28.7",
"eslint": "^4.6.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.1.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"gh-pages": "^1.0.0",
"handlebars": "^4.0.5",
"handlebars-loader": "^1.6.0",
"html-webpack-plugin": "^2.24.1",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"dependencies": {
"leaflet": "^1.2.0"
}
}
1 change: 1 addition & 0 deletions src/CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2017.openstreetmap.org.ar
Loading

0 comments on commit 462d91e

Please sign in to comment.