{"id":18970342,"url":"https://github.com/athiththan11/angular-locus","last_synced_at":"2026-04-12T12:44:42.093Z","repository":{"id":38806267,"uuid":"166969479","full_name":"athiththan11/Angular-Locus","owner":"athiththan11","description":"Site Locator (Locus) Application built using Angular 7 and Google Maps","archived":false,"fork":false,"pushed_at":"2023-03-02T17:48:37.000Z","size":1424,"stargazers_count":1,"open_issues_count":14,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-06-02T11:21:52.728Z","etag":null,"topics":["angular","angular-google-maps","angular-material","angular7","bootstrap4","bottom-sheet","firebase","firebase-hosting","google-maps"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/athiththan11.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2019-01-22T09:52:48.000Z","updated_at":"2022-01-22T18:12:11.000Z","dependencies_parsed_at":"2024-11-08T14:57:51.814Z","dependency_job_id":"36ab04a7-4211-40aa-80c3-dda8da75deb5","html_url":"https://github.com/athiththan11/Angular-Locus","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/athiththan11/Angular-Locus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/athiththan11%2FAngular-Locus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/athiththan11%2FAngular-Locus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/athiththan11%2FAngular-Locus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/athiththan11%2FAngular-Locus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/athiththan11","download_url":"https://codeload.github.com/athiththan11/Angular-Locus/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/athiththan11%2FAngular-Locus/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31715492,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-12T06:22:27.080Z","status":"ssl_error","status_checked_at":"2026-04-12T06:21:52.710Z","response_time":58,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["angular","angular-google-maps","angular-material","angular7","bootstrap4","bottom-sheet","firebase","firebase-hosting","google-maps"],"created_at":"2024-11-08T14:56:42.810Z","updated_at":"2026-04-12T12:44:42.062Z","avatar_url":"https://github.com/athiththan11.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Angular Locus\n\nA site locator application built using angular 7 (2+) and firebase.\n\n[Live Demo](https://angular-locus.firebaseapp.com)\n\n## Step By Step Guide\n\n### Angular CLI\n\nInstall Angular CLI tools\n\n```shell\nnpm install -g @angular/cli\n```\n\n### Create Angular application\n\nCreate a new Angular application named `angular-locus`\n\n```shell\nng new angular-locus\n```\n\n### PWA\n\nAdd PWA (Progressive Web Application) support\n\n```shell\nng add @angular/pwa --project=angular-locus\n```\n\nThis will add necessary configurations to your angular application to enable PWA functionalities and features\n\n#### manifest.json\n\nAdd/Replace necessary configurations on generated manifest.json\n\n### Themes\n\n#### Angular Material\n\nAdd Angular Material module\n\n```shell\nng add @angular/material\n```\n\n#### Bootstrap\n\nAdd Bootstrap, Popper.JS and Jquery\n\n```shell\nnpm install bootstrap popper.js jquery --save\n```\n\n### Angular Google Maps\n\nInstall Angular Google Maps\n\n```shell\nnpm install @agm/core --save\n```\n\nRefer [Angular Google Maps](https://angular-maps.com/guides/getting-started/)\n\n#### Google Maps API\n\nGet your `Google Maps API` from developer console and replace it in both `environment` and `environment.prod` scripts\n\n```ts\nexport const environment = {\n  production: false,\n  googleMapsApiKey: 'YOUR_API_KEY'\n};\n```\n\n### Firebase\n\nInstall Firebase CLI tools\n\n```shell\nnpm install -g firebase-tools\n```\n\n#### Init Firebase\n\nLogin to your Firebase account\n\n```shell\nfirebase login\n```\n\nAnd enter your credentials. and after that initialize firebase configuration inside your project\n\n```shell\nfirebase init\n```\n\n#### Firestore\n\nInstall firebase dependencies for angular\n\n```shell\nnpm install --save @angular/fire firebase\n```\n\n##### Environment Variables\n\nCreate a project in Firebase and replace the api keys in both `environment` and `environment.prod` scripts\n\n```ts\nexport const environment = {\n  production: false,\n  googleMapsApiKey: 'YOUR_API_KEY',\n  firebaseConfig: {\n    apiKey: 'YOUR_API_KEY',\n    authDomain: 'YOUR_AUTH_DOMAIN',\n    databaseURL: 'YOUR_DATABASE_URL',\n    projectId: 'YOUR_PROJECT_ID',\n    storageBucket: 'YOUR_STORAGE_BUCKET',\n    messagingSenderId: 'YOUR_MESSAGING_SENDER_ID'\n  }\n};\n```\n\n## Run\n\n### ng serve\n\nUse the following command to serve your angular application locally\n\n```shell\nng serve\n```\n\n### ng build\n\nUse the following command to build your angular application for production ready environment\n\n```shell\nng build\n```\n\n## Deploy\n\nDeploy to Firebase hosting service using the following command (Use this command after initializing all necessary firebase configurations in your repo)\n\n```shell\nfirebase deploy\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fathiththan11%2Fangular-locus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fathiththan11%2Fangular-locus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fathiththan11%2Fangular-locus/lists"}