{"id":13611857,"url":"https://github.com/csdojo-defaang/defaang","last_synced_at":"2025-10-01T10:31:39.454Z","repository":{"id":56711434,"uuid":"523617129","full_name":"csdojo-defaang/defaang","owner":"csdojo-defaang","description":"A website that will curate recently-asked interview questions from FAANG+. Currently inactive. Check out: https://github.com/ykdojo/OpenStream","archived":true,"fork":false,"pushed_at":"2023-08-03T18:53:24.000Z","size":1896,"stargazers_count":509,"open_issues_count":41,"forks_count":120,"subscribers_count":11,"default_branch":"main","last_synced_at":"2024-09-24T03:32:06.068Z","etag":null,"topics":["hacktoberfest","hacktoberfest-accepted","hacktoberfest2022","nextjs","supabase","tailwindcss"],"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/csdojo-defaang.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null},"funding":{"github":["ykdojo"]}},"created_at":"2022-08-11T06:55:21.000Z","updated_at":"2024-08-28T21:08:09.000Z","dependencies_parsed_at":"2024-01-14T06:53:02.476Z","dependency_job_id":null,"html_url":"https://github.com/csdojo-defaang/defaang","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/csdojo-defaang%2Fdefaang","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/csdojo-defaang%2Fdefaang/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/csdojo-defaang%2Fdefaang/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/csdojo-defaang%2Fdefaang/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/csdojo-defaang","download_url":"https://codeload.github.com/csdojo-defaang/defaang/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":219875400,"owners_count":16554676,"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":["hacktoberfest","hacktoberfest-accepted","hacktoberfest2022","nextjs","supabase","tailwindcss"],"created_at":"2024-08-01T19:02:14.924Z","updated_at":"2025-10-01T10:31:34.121Z","avatar_url":"https://github.com/csdojo-defaang.png","language":"TypeScript","funding_links":["https://github.com/sponsors/ykdojo"],"categories":["TypeScript"],"sub_categories":[],"readme":"# defaang.io\n\nA website that will curate recently-asked interview questions from FAANG+ to help people practice \u0026amp; prep!\n\nThe questions will be submitted anonymously, or at least semi-anonymously. We'll ensure that no matter who submits them, we won't reveal the usernames, emails or any other personal info unless they explicitly choose to do so.\n\n## Demo\n\nhttps://defaang.io/\n\n![image](https://user-images.githubusercontent.com/1811651/190090988-bd062b3d-635b-4ce1-ac15-81d3c9edcb91.png)\n![image](https://user-images.githubusercontent.com/1811651/190091032-73164fed-e5d9-4614-a2a1-2c2d144ebbaa.png)\n\n## How to start frontend (Next.js + Tailwind CSS)\n\nMake sure you have [git](https://git-scm.com/) and [npm](https://docs.npmjs.com/cli/init) installed in your local machine.\n\nThe repository has a `.vscode` folder that contains `settings.json` and `extensions.json`. The `settings.json` file configures your VS Code editor to use `eslint` and `prettier` on every code save action (`ctrl + s`). The `extension.json` file contains a list of VS Code extensions, VS Code will show these extensions as suggestions in the extensions tab. After installing these extensions, auto linting and formatting should start working.\n\n### Steps:\n\n1. Clone this repo\n\n   ```sh\n   git clone https://github.com/ykdojo/defaang.git\n   ```\n\n2. Go into the project root directory\n\n   ```sh\n   cd defaang\n   ```\n\n3. Install all the dependencies\n\n   ```sh\n   npm install\n   ```\n\n4. Start the application development server\n\n   ```sh\n   npm run dev\n   ```\n\n## How to deploy the application to Vercel\n\n1. Ensure you have a vercel account. If not, sign up for one [here](https://vercel.com/).\n\n2. Import the project into vercel.\n\n3. Give vercel the nessecary permissions, deploy the projects and voila the deployment is done.\n\n## How to set up Supabase\n\n1. Sign up on Supabase [here](https://supabase.com/).\n\n2. Create a new Project inside Supabase.\n\n3. Go to `Settings` -\u003e `API` and copy the Project `URL` and `anon`.\n\n4. Create a new file named `.env.local` in the root directory.\n\n5. Paste the `URL` and `annon` in the `.env.local` file like so:\n\n```\nNEXT_PUBLIC_SUPABASE_URL=YOUR_SUPABASE_URL\nNEXT_PUBLIC_SUPABASE_ANON_KEY=YOUR_SUPABASE_ANON_KEY\n```\n\n6. Go to the [SQL Editor](https://app.supabase.com/project/_/sql) tab inside the Supabase dashboard.\n\n7. Copy the SQL queries from [here](supabase.sql) and paste them in the SQL Editor.\n\n8. Run the queries and you're done.\n\nFor more reference, read the [Next Quickstart for Supabase](https://supabase.com/docs/guides/with-nextjs)\n\nAlternatively, you can immediately open the workspace on Gitpod by clicking the button below:\n\n[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/ykdojo/defaang)\n\n## Contributing\n\nAfter you have installed defaang on your local machine, head over to our [CONTRIBUTING.md](https://github.com/ykdojo/defaang/blob/main/CONTRIBUTING.md) guide to assist with all you need to know before getting started with making changes to the codebase.\n\n## Discord\n\nJoin us [here](https://discord.gg/nNtVfKddDD).\n\n## Streaming\n\nI (YK) stream almost every day showing my progress on this project on Twitch [here](https://twitch.tv/ykdojo).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcsdojo-defaang%2Fdefaang","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcsdojo-defaang%2Fdefaang","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcsdojo-defaang%2Fdefaang/lists"}