{"id":22160615,"url":"https://github.com/mandarwagh9/waitlist-webpage","last_synced_at":"2026-04-29T08:03:47.763Z","repository":{"id":254128996,"uuid":"845579885","full_name":"mandarwagh9/waitlist-webpage","owner":"mandarwagh9","description":"Basic Web app allows users to join a waitlist by entering their email addresses. The emails are stored in Firebase Realtime Database.","archived":false,"fork":false,"pushed_at":"2024-08-21T16:58:36.000Z","size":3625,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-29T20:30:25.084Z","etag":null,"topics":["firebase","waitlist","webapp"],"latest_commit_sha":null,"homepage":"","language":"HTML","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/mandarwagh9.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":"2024-08-21T14:18:05.000Z","updated_at":"2024-08-21T16:58:39.000Z","dependencies_parsed_at":"2025-01-29T20:30:57.258Z","dependency_job_id":"f90905d2-cbcd-4fb7-a850-dc94568fe8d3","html_url":"https://github.com/mandarwagh9/waitlist-webpage","commit_stats":null,"previous_names":["mandarwagh9/waitlist-webpage"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mandarwagh9%2Fwaitlist-webpage","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mandarwagh9%2Fwaitlist-webpage/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mandarwagh9%2Fwaitlist-webpage/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mandarwagh9%2Fwaitlist-webpage/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mandarwagh9","download_url":"https://codeload.github.com/mandarwagh9/waitlist-webpage/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245294838,"owners_count":20591925,"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":["firebase","waitlist","webapp"],"created_at":"2024-12-02T04:08:59.245Z","updated_at":"2026-04-29T08:03:42.718Z","avatar_url":"https://github.com/mandarwagh9.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Join Waitlist\r\n\r\nThis project allows users to join a waitlist by entering their email addresses. The emails are stored in Firebase Realtime Database.\r\n\r\n## Table of Contents\r\n\r\n- [Features](#features)\r\n- [Prerequisites](#prerequisites)\r\n- [Demo](#Demo)\r\n- [Setup](#setup)\r\n- [Running the Project](#running-the-project)\r\n- [Firebase Configuration](#firebase-configuration)\r\n- [Troubleshooting](#troubleshooting)\r\n- [Contributing](#contributing)\r\n- [License](#license)\r\n\r\n## Features\r\n\r\n- Simple form to collect user emails.\r\n- Data is stored in Firebase Realtime Database.\r\n- Uses Firebase for real-time data handling and jQuery for form submission.\r\n\r\n## Prerequisites\r\n\r\nEnsure you have the following before setting up the project:\r\n\r\n- A web browser.\r\n- Internet connection for loading Firebase SDK and jQuery.\r\n\r\n## Demo\r\n![demo](https://github.com/mandarwagh9/waitlist-webpage/blob/main/0821(2).gif?raw=true)\r\n\r\n## Setup\r\n\r\n1. **Clone the Repository**\r\n\r\n   ```bash\r\n   git clone https://github.com/yourusername/waitlist-webpage.git\r\n   cd waitlist-webpage\r\n   ```\r\n\r\n2. **Install Dependencies**\r\n\r\n   This project does not require any local dependencies, but it relies on external CDN links for jQuery and Firebase SDK.\r\n\r\n## Running the Project\r\n\r\n1. **Open the `index.html` File**\r\n\r\n   You can open `index.html` directly in your web browser.\r\n\r\n## Firebase Configuration\r\n\r\nTo use Firebase, you need to replace the placeholder values in `index.html` with your Firebase project's configuration details.\r\n\r\n1. **Go to the [Firebase Console](https://console.firebase.google.com/)** and select your project.\r\n2. **Navigate to Project Settings** and find your Firebase config details.\r\n3. **Replace the placeholders** in `index.html` with your Firebase configuration:\r\n\r\n   ```javascript\r\n   const firebaseConfig = {\r\n     apiKey: \"YOUR_API_KEY\",\r\n     authDomain: \"YOUR_AUTH_DOMAIN\",\r\n     databaseURL: \"YOUR_DATABASE_URL\",\r\n     projectId: \"YOUR_PROJECT_ID\",\r\n     storageBucket: \"YOUR_STORAGE_BUCKET\",\r\n     messagingSenderId: \"YOUR_MESSAGING_SENDER_ID\",\r\n     appId: \"YOUR_APP_ID\",\r\n     measurementId: \"YOUR_MEASUREMENT_ID\"\r\n   };\r\n   ```\r\n\r\n## Troubleshooting\r\n\r\n- **Firebase Initialization Issues**: Ensure you have replaced the configuration placeholders with your actual Firebase project details. Verify Firebase rules and ensure your browser's console shows no errors related to Firebase.\r\n\r\n- **Permission Denied Errors**: Check your Firebase Realtime Database rules. For development purposes, you might set your rules to allow read and write access. Update the rules in the Firebase Console to:\r\n\r\n   ```json\r\n   {\r\n     \"rules\": {\r\n       \".read\": \"auth != null\",\r\n       \".write\": \"auth != null\"\r\n     }\r\n   }\r\n   ```\r\n\r\n   Refine these rules for production to secure your database.\r\n\r\n## Contributing\r\n\r\nFeel free to open issues or submit pull requests if you have suggestions or improvements. Ensure to follow the project's code style and provide clear descriptions of your changes.\r\n\r\n## License\r\n\r\nThis project is licensed under the [MIT License](LICENSE).\r\n\r\n---\r\n\r\n**Note:** Make sure to replace `yourusername` and `your-repo-name` with your actual GitHub username and repository name.\r\n\r\n\r\n### Additional Tips:\r\n\r\n- **Replace Placeholder Values**: Ensure you replace all placeholder values with actual details.\r\n- **Test Thoroughly**: Test the application thoroughly to make sure Firebase integration is working correctly.\r\n- **Keep Firebase Config Secure**: When pushing code to a public repository, consider removing sensitive information and using environment variables for configuration.\r\n\r\nLet me know if you need any adjustments or additional information!\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmandarwagh9%2Fwaitlist-webpage","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmandarwagh9%2Fwaitlist-webpage","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmandarwagh9%2Fwaitlist-webpage/lists"}