{"id":23519760,"url":"https://github.com/ramonbecker/appgeolocation","last_synced_at":"2025-05-14T01:14:23.334Z","repository":{"id":246042552,"uuid":"371470758","full_name":"RamonBecker/AppGeolocation","owner":"RamonBecker","description":"The project aims to search for places with: restaurants, cafeterias, among others using APIS such as: GEOLITE2, OpenStreet and YELP.","archived":false,"fork":false,"pushed_at":"2021-06-01T15:00:17.000Z","size":596,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-16T23:13:36.507Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RamonBecker.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-05-27T18:38:10.000Z","updated_at":"2021-06-01T15:00:19.000Z","dependencies_parsed_at":"2024-06-25T14:44:16.002Z","dependency_job_id":"f553742a-e34d-41a5-9837-8ce0b300b312","html_url":"https://github.com/RamonBecker/AppGeolocation","commit_stats":null,"previous_names":["ramonbecker/appgeolocation"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RamonBecker%2FAppGeolocation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RamonBecker%2FAppGeolocation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RamonBecker%2FAppGeolocation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RamonBecker%2FAppGeolocation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RamonBecker","download_url":"https://codeload.github.com/RamonBecker/AppGeolocation/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254050193,"owners_count":22006245,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-25T16:10:24.952Z","updated_at":"2025-05-14T01:14:23.309Z","avatar_url":"https://github.com/RamonBecker.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Geolocation \n## :information_source: Information \n\n\nThe project aims to search for locations according to the characteristics and city typed by the user, such as: \"Restaurant\" and \"New York\". The YELP API was used to perform the data search, for more information on using the API go to: https://www.yelp.com/developers/documentation/v3.\nA map has been placed for the user to better locate the location using openstreet to display the map. For the addresses searched, the GEOIP2 database was used. For more information on using GEOIP2, go to: https://dev.maxmind.com/geoip.\n\n## ⚠️ Prerequisite\n\n![](https://img.shields.io/badge/Bootstrap-563D7C?style=for-the-badge\u0026logo=bootstrap\u0026logoColor=white)\n\n![](https://img.shields.io/badge/Python-3776AB?style=for-the-badge\u0026logo=python\u0026logoColor=white)\n\n![](https://img.shields.io/badge/Django-092E20?style=for-the-badge\u0026logo=django\u0026logoColor=white)\n\n![](https://img.shields.io/badge/MySQL-00000F?style=for-the-badge\u0026logo=mysql\u0026logoColor=white)\n\n## Demo\n\n![localidades](https://user-images.githubusercontent.com/44611131/120345448-dce65200-c2d0-11eb-9ca4-3dfbe5ef7e1b.png)\n\n## ⚙️ Creating virtual machine\n\nCreate your virtual machine\n```\npython3 -m venv venv\n```\nActivate your virtual machine\n```\nsource venv/bin/activate\n```\nAfter the virtual machine is activated, install the project dependencies\n```\npip install -r requirements.txt```\n```\n\n## ⚙️ Installing MySQL\n\nEnter the following commands in the terminal.\n\n```\nsudo apt update\nsudo apt install mysql-server\n\n```\n### Configuring MySQL\n\nFor new installations, you will want to run the security script that is included. This changes some of the less secure default options for things like root logins and example users. Enter the command below.\n\n```\nsudo mysql_secure_installation\n```\nThis will take you through a series of prompts where you can make some changes to the security options of your MySQL installation. The first prompt will ask you if you want to configure the Validate Password Plugin, which can be used to test the strength of your MySQL password. Regardless of your choice, the next prompt will be to set the password for the MySQL root user. Sign in and then confirm a secure password of your choice.\n\nFrom there, you can press Y and then ENTER to accept the default answers for all subsequent questions. This will remove some anonymous users and the test database, disable remote login for root, and load all of these new rules so that MySQL immediately respects the changes you made.\n\n### Testing MySQL\n\nTo see if MYSQL is running, type the following command.\n\n```\nsystemctl status mysql.service\n```\n\nIf MySQL is not running, you can start it with the following command.\n```\nsudo systemctl start mysql\n```\nNow try to connect your root user to MySQL.\n```\nmysql -u root -p\n```\n## :rocket: Installation\n\n![](https://img.shields.io/badge/Linux-FCC624?style=for-the-badge\u0026logo=linux\u0026logoColor=black)\n\n```sh\ngit clone https://github.com/RamonBecker/AppGeolocation.git\n```\n\n![](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge\u0026logo=windows\u0026logoColor=white)\n\n\n```sh\ngit clone https://github.com/RamonBecker/AppGeolocation.git\nor install github https://desktop.github.com/ \n\n```\n\n## :zap: Technologies\t\n\n- Python\n- GEOLite2\n- OpenStreet\n\n\n\n\n## :memo: Developed features\n\n- [x] Search for the term (characteristic) of the location;\n- [x] Search by the specific city of a location;\n- [x] In the search performed, the map of the locations is shown.\n\n\n## :technologist:\t Author\n\nBy Ramon Becker 👋🏽 Get in touch!\n\n\n\n[\u003cimg src='https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/github.svg' alt='github' height='40'\u003e](https://github.com/RamonBecker)  [\u003cimg src='https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/linkedin.svg' alt='linkedin' height='40'\u003e](https://www.linkedin.com/in/https://www.linkedin.com/in/ramon-becker-da-silva-96b81b141//)\n![Gmail Badge](https://img.shields.io/badge/-ramonbecker68@gmail.com-c14438?style=flat-square\u0026logo=Gmail\u0026logoColor=white\u0026link=mailto:ramonbecker68@gmail.com)\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Framonbecker%2Fappgeolocation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Framonbecker%2Fappgeolocation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Framonbecker%2Fappgeolocation/lists"}