{"id":25239153,"url":"https://github.com/denver-code/permeso-portal","last_synced_at":"2026-05-08T13:34:55.805Z","repository":{"id":256774762,"uuid":"841171817","full_name":"denver-code/permeso-portal","owner":"denver-code","description":"Permeso - a website for getting Councils permission applications.","archived":false,"fork":false,"pushed_at":"2024-09-12T13:50:24.000Z","size":1252,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-11T18:13:53.469Z","etag":null,"topics":["full-stack","nextjs","restapi","tailwindcss"],"latest_commit_sha":null,"homepage":"https://dev.permeso.savenko.tech","language":"TypeScript","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/denver-code.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-11T21:09:12.000Z","updated_at":"2024-09-12T13:48:17.000Z","dependencies_parsed_at":"2024-11-26T23:02:01.740Z","dependency_job_id":null,"html_url":"https://github.com/denver-code/permeso-portal","commit_stats":null,"previous_names":["denver-code/permeso-portal"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/denver-code%2Fpermeso-portal","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/denver-code%2Fpermeso-portal/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/denver-code%2Fpermeso-portal/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/denver-code%2Fpermeso-portal/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/denver-code","download_url":"https://codeload.github.com/denver-code/permeso-portal/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247393555,"owners_count":20931809,"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":["full-stack","nextjs","restapi","tailwindcss"],"created_at":"2025-02-11T18:14:04.819Z","updated_at":"2026-05-08T13:34:50.754Z","avatar_url":"https://github.com/denver-code.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Permeso portal\n## Prerequisites\n\nBefore getting started, ensure you have the following prerequisites:\n\n- Node.js 14 or higher\n- npm or yarn package manager\n\n```bash\n  npm install\n  # or\n  yarn install\n```\n\n- Run the development server:\n\n```bash\n  npm run dev\n  # or\n  yarn dev\n```\n\nOpen [http://localhost:3000](http://localhost:3000) with your browser to see the result.\n\nYou can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.\n\nThis project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.\n\n## Learn More\n\nTo learn more about Next.js, take a look at the following resources:\n\n- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.\n- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.\n\nYou can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!\n\n## Deploy on Vercel\n\nThe easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template\u0026filter=next.js\u0026utm_source=create-next-app\u0026utm_campaign=create-next-app-readme) from the creators of Next.js.\n\nCheck out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.\n\n## Set Up Firebase\n\n\u003chttps://console.firebase.google.com/\u003e\n\n- Log in with your Google account.\n- Click on `Go to console` button.\n- Click `Add Project` card.\n- Give your project a name.\n- Click on `Continue` button.\n- Disable `Google Analytics for this project` (unless you wish to use it).\n- Click `Create project` button.\n- Click on the web icon button to create your web app. It will show a text popup `Web`.\n- Register app by giving it a nickname and click `Register app` button.\n- Where package.json is located, in your cli, type `npm i firebase`.\n- Copy configuration file. Make a new file in `src` called `firebase` called `firebase.js`.\n- In project root, create a file and name it `.env`.\n- Make sure you add `.env.local` to your `.gitignore` so you don't expose your variables in git repo.\n- Follow the instructions here at \u003chttps://nextjs.org/docs/pages/building-your-application/configuring/environment-variables#loading-environment-variables\u003e to add your variables from firebase.js into this file.\n\nExample...\n\n```md\nNEXT_PUBLIC_FIREBASE_API_KEY=your_api_key\nNEXT_PUBLIC_FIREBASE_AUTH_DOMAIN=your_auth_domain\nNEXT_PUBLIC_FIREBASE_PROJECT_ID=your_project_id\nNEXT_PUBLIC_FIREBASE_STORAGE_BUCKET=your_storage_bucket\nNEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID=your_messaging_sender_id\nNEXT_PUBLIC_FIREBASE_APP_ID=your_app_id\n```\n\n- Create `env` file and paste these variables with your own information.\n- Click on `Continue on console` button\n- On your project homepage, choose a product to add to your app. First, click on `Authentication`.\n- Under `Get started with Firebase Auth by adding your first sign-in method` select `Email/Password`.\n\nYou should now be setup to use Firebase.\n\n## Authentication\n\n- In `src/firebase` directory, exists the directory `auth` containing the logic for `signin` and `signup`.\n\n## Folder Structure\n\nThe folder structure of this project is organized as follows:\n\n- `pages`: Contains the Next.js pages for server-side rendering.\n- `components`: Holds the reusable React components.\n- `lib`: Includes utility functions and modules.\n- `public`: Stores static assets such as images, fonts, and stylesheets.\n- `styles`: Contains global styles and Tailwind CSS configuration.\n- `firebase`: Houses the Firebase configuration and Firebase-related functions.\n\n## Deployment\n\n## Contributing\n\n\n## License\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdenver-code%2Fpermeso-portal","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdenver-code%2Fpermeso-portal","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdenver-code%2Fpermeso-portal/lists"}