From 86a82b16128305f125f1faae2e9d07cc4bad89bc Mon Sep 17 00:00:00 2001 From: JakubDrobnik Date: Mon, 19 Nov 2018 11:43:36 +0100 Subject: [PATCH] init repository --- .gitignore | 3 +++ README.md | 2 ++ apify.json | 11 +++++++++++ package.json | 24 ++++++++++++++++++++++++ src/main.js | 1 + 5 files changed, 41 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 apify.json create mode 100644 package.json create mode 100644 src/main.js diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8c60a09 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +apify_storage +node_modules +.idea diff --git a/README.md b/README.md new file mode 100644 index 0000000..027a0a4 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# Crawler Google Places + diff --git a/apify.json b/apify.json new file mode 100644 index 0000000..13ccc19 --- /dev/null +++ b/apify.json @@ -0,0 +1,11 @@ +{ + "name": "crawler-google-places", + "actId": null, + "version": { + "versionNumber": "0.1", + "buildTag": "latest", + "envVars": [], + "sourceType": "TARBALL", + "tarballUrl": null + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..31eb5c6 --- /dev/null +++ b/package.json @@ -0,0 +1,24 @@ +{ + "name": "crawler-google-places", + "version": "1.0.0", + "description": "", + "main": "main.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/drobnikj/crawler-google-places.git" + }, + "keywords": [ + "crawler", + "google", + "places" + ], + "author": "Jakub Drobnik ", + "license": "ISC", + "bugs": { + "url": "https://github.com/drobnikj/crawler-google-places/issues" + }, + "homepage": "https://github.com/drobnikj/crawler-google-places#readme" +} diff --git a/src/main.js b/src/main.js new file mode 100644 index 0000000..06e7df9 --- /dev/null +++ b/src/main.js @@ -0,0 +1 @@ +tets