diff --git a/client/package-lock.json b/client/package-lock.json index 63e0fe9..c93fada 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -13349,6 +13349,15 @@ "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=" }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, "string-width": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", @@ -13359,15 +13368,6 @@ "strip-ansi": "4.0.0" } }, - "string_decoder": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", - "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", - "dev": true, - "requires": { - "safe-buffer": "5.1.1" - } - }, "strip-ansi": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 0000000..513c0fc --- /dev/null +++ b/docs/index.html @@ -0,0 +1,27 @@ + + +Google Offline Navigator: An open source project built for Grow with Google + + + + +## How to contribute +Thanks for your interest in contributing to Offline Google Maps Navigator! Contributing to open source projects like this one can be a rewarding way to learn, teach, and build experience. +Not only that, contributing is a great way to get involved with social coding. We are excited to see what amazing contributions you will make, as well as how your contributions will benefit others. +Here is how you can [contribute](CONTRIBUTING.md) and here is how you can get [set up](README.md) with the code base + +## Wiki +The wiki is where you will find more information about the inner workings of this project. You will also find documentation about specific components here. +Check it [out](https://github.com/TheDevPath/googleMaps-offline-navigator/wiki) + +## Best Practices +This is where the team captures lessons learned, best practices and "gotchas" that may be of help to others + +## Meet the team +Here are the [people](https://github.com/TheDevPath/googleMaps-offline-navigator/graphs/contributors) behind this project + + ![Logo](https://user-images.githubusercontent.com/35308564/36317506-4407c0aa-130b-11e8-88a2-af1cca16eaba.PNG "Logo") + + + + diff --git a/docs/style.css b/docs/style.css new file mode 100644 index 0000000..20ef392 --- /dev/null +++ b/docs/style.css @@ -0,0 +1,3 @@ +#logo { + width: 100px; +} diff --git a/models/saved-pins.js b/models/saved-pins.js index 6c9c3e6..c0d9dae 100644 --- a/models/saved-pins.js +++ b/models/saved-pins.js @@ -13,4 +13,3 @@ const savedPinsSchema = new mongoose.Schema({ }); module.exports = mongoose.model('SavedPins', savedPinsSchema); - diff --git a/models/search-history.js b/models/search-history.js index 40937f3..29a7c45 100644 --- a/models/search-history.js +++ b/models/search-history.js @@ -8,4 +8,3 @@ const searchHistorySchema = new Schema({ }); module.exports = mongoose.model('SearchHistory', searchHistorySchema); -