Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V1- Initial release #9

Open
wants to merge 17 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Created by .ignore support plugin (hsz.mobi)
/.idea
/scraper/vendor
/scraper/.env
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# geo-dataset
# Geo-dataset
Because government don't provide geo datasets

## License and copyright.
All the code is this repository is released under the MIT license.

## Versioning

For transparency into our release cycle and in striving to maintain backward compatibility, Bootstrap is maintained under [the Semantic Versioning guidelines](http://semver.org/). Sometimes we screw up, but we'll adhere to those rules whenever possible.
Expand Down
Empty file added dataset/json/.gitkeep
Empty file.
1 change: 1 addition & 0 deletions dataset/json/belgain-cities.json

Large diffs are not rendered by default.

Binary file modified dataset/mysql/database.sql
Binary file not shown.
12 changes: 12 additions & 0 deletions scraper/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# EditorConfig is awesome: http://EditorConfig.org

# top-most EditorConfig file
root = true

; Unix-style newlines
[*]
end_of_line = LF

[*.php]
indent_style = space
indent_size = 4
5 changes: 5 additions & 0 deletions scraper/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
DB_NAME=geo_dataset
DB_HOST=localhost
DB_PORT=3306
DB_USER=root
DB_PASS=root
24 changes: 24 additions & 0 deletions scraper/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "activismebe/dataset",
"description": "Dataset craper for ActivismeBE",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Tjoosten",
"email": "[email protected]"
}
],
"require": {
"symfony/console": "^3.2",
"vlucas/phpdotenv": "^2.4"
},
"require-dev": {
"symfony/var-dumper": "^3.2"
},
"autoload": {
"psr-4":{
"ActivismeBe\\Scraper\\": "src/"
}
}
}
Loading