{"id":49465971,"url":"https://github.com/movntains/dev-events","last_synced_at":"2026-04-30T12:35:32.535Z","repository":{"id":322006345,"uuid":"1087417487","full_name":"movntains/dev-events","owner":"movntains","description":"Web app for browsing, creating, and managing events related to software dev","archived":false,"fork":false,"pushed_at":"2025-11-06T02:16:55.000Z","size":3816,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"develop","last_synced_at":"2026-04-30T12:35:30.424Z","etag":null,"topics":["cloudinary","mongodb","nextjs","nextjs16","posthog","tailwindcss"],"latest_commit_sha":null,"homepage":"","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/movntains.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-31T21:55:01.000Z","updated_at":"2025-11-06T02:16:58.000Z","dependencies_parsed_at":"2025-11-02T01:07:17.778Z","dependency_job_id":null,"html_url":"https://github.com/movntains/dev-events","commit_stats":null,"previous_names":["movntains/dev-events"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/movntains/dev-events","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/movntains%2Fdev-events","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/movntains%2Fdev-events/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/movntains%2Fdev-events/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/movntains%2Fdev-events/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/movntains","download_url":"https://codeload.github.com/movntains/dev-events/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/movntains%2Fdev-events/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32465009,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T22:27:22.272Z","status":"online","status_checked_at":"2026-04-30T02:00:05.929Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["cloudinary","mongodb","nextjs","nextjs16","posthog","tailwindcss"],"created_at":"2026-04-30T12:35:31.890Z","updated_at":"2026-04-30T12:35:32.530Z","avatar_url":"https://github.com/movntains.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DevEvents\n\n\u003e _DevEvents_ is a web application for browsing, creating, and managing events (e.g., hackathons, meetups, conferences) related to software development.\n\n## Project Status\n\n|                                                                                   Build                                                                                   |                                                               Tests                                                                |                                                            Coverage                                                             |\n| :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------: |\n| ![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/movntains/dev-events/develop.yaml?branch=develop\u0026style=for-the-badge\u0026logo=github) | ![GitHub Branch Check Runs](https://img.shields.io/github/check-runs/movntains/dev-events/develop?style=for-the-badge\u0026logo=github) | ![Code Coverage](https://img.shields.io/codecov/c/github/movntains/dev-events?style=for-the-badge\u0026logo=codecov\u0026logoColor=white) |\n\n## Tech Stack\n\n- Next.js version 16\n- MongoDB\n- Cloudinary\n- PostHog\n- Tailwind CSS\n- Bun\n- Biome\n- Vitest\n- React Testing Library\n- GitHub Actions\n\n## Local Development\n\n### Package Manager\n\nThis project uses [Bun](https://bun.sh) as a package manager, so you'll need to install that if you don't already have it installed. Using another package manager (e.g., npm, yarn) would result in creating another lockfile for dependencies, which could result in conflicts and is therefore not recommended.\n\n### Installing Dependencies\n\nInstall project dependencies with the following command.\n\n```shell\n$ bun install\n```\n\n### Environment Variables\n\n1. Create a `.env` file.\n2. Copy the contents of the `.env.example` file into the `.env` file.\n3. Add values for any variables that are blank (e.g., API keys).\n\n### Running the Development Server\n\nTo run the development server, run the following command.\n\n```shell\n$ bun run dev\n```\n\nThis will start a development server at [http://localhost:3000](http://localhost:3000).\n\n### API Endpoints\n\nThe `endpoints` directory includes YAML files for API endpoint testing. They can be opened with [Yaak](https://yaak.app), a free API client that enables syncing workspace data to the local filesystem.\n\nIn the app, you can choose to open an existing workspace and select the `endpoints` directory when doing so. This will load the workspace and all of the requests within it.\n\nIf any local changes are made to the existing requests, or if new requests are added, those changes will be automatically tracked by Git and can be discarded or committed as needed.\n\n## Tests\n\n### Coverage\n\nTest coverage is created by Vitest and sent to [Codecov](https://about.codecov.io/) via a GitHub action. This is the source of the `Coverage` badge in the [Project Status](#project-status) section.\n\n### Running Tests Locally\n\nTo run tests locally with Vitest, run the following command.\n\n```shell\n$ bun run test\n```\n\n## PostHog Setup\n\n1. [Create a free PostHog account](https://posthog.com) if you don't have one already.\n   - You'll be asked to create an organization. Set whatever organization name you want and continue.\n   - Select all products to use.\n   - Skip the installation for the `Install` step.\n2. On your dashboard, click the project dropdown in the top left and click the settings icon next to the project name (this will be `Default project` if you're a new user).\n   - If you already have an account, create a new project.\n3. _(Optional)_ Set `Display name` to `DevEvents`, or whatever name you'd like to call the project.\n4. Scroll down to the bottom of the `General` tab and copy your `Project API key`. Set that value as the value for `NEXT_PUBLIC_POSTHOG_KEY` in your `.env` file.\n5. Use the [PostHog documentation](https://posthog.com/docs) to create insights and dashboards, turn on error tracking, etc.\n\n## MongoDB Setup\n\n1. [Create a free MongoDB Atlas account](https://www.mongodb.com/cloud/atlas/register) if you don't have one already.\n2. Create a new project.\n3. Create a cluster.\n   - Choose the free tier.\n   - Select the region that's closest to you.\n   - Click `Create Deployment`.\n4. Click `Create Database User`.\n5. Click `Choose a connection method`.\n6. Click `Drivers` under `Connect to your application`.\n7. Wait for the cluster to finish provisioning, and then copy the connection string. Set it as the value for the `MONGODB_URI` variable in your `.env` file.\n8. In the side navigation, click `Database and Network Access` underneath `Security`.\n   - Click on `IP Access List`.\n   - Click `Add IP Address`.\n   - Click `Allow Access from Anywhere` and click `Confirm`.\n     - This is necessary for connecting after deployment.\n\n## Cloudinary Setup\n\n1. [Create a free Cloudinary account](https://cloudinary.com) if you don't have one already.\n   - Go through the onboarding if you've just created an account.\n2. Click on the settings icon in the side navigation.\n3. Click on `Upload`, then click on `Add Upload Preset`.\n   - Provide any preset name you'd like.\n   - Set `Signing mode` as `Unsigned`.\n   - Set `Folder` to `events`.\n   - Click `Save`.\n4. Click on `API Keys` in the navigation.\n   - Copy the `CLOUDINARY_URL` value in the `API environment variable` section and paste it as the value for the `CLOUDINARY_URL` environment variable in your `.env` file.\n   - Click `Generate New API Key`. Enter the confirmation code sent to your email.\n   - Copy the `API Key` value shown in the table and replace `\u003cyour_api_key\u003e` in your `CLOUDINARY_URL` value with the key you just copied.\n   - Copy the `API Secret` value shown in the table and replace `\u003cyour_api_secret\u003e` in your `CLOUDINARY_URL` with the secret you just copied.\n   - _(Optional)_ You can rename your API key to something more specific, rather than leaving the default key name of `Untitled`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmovntains%2Fdev-events","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmovntains%2Fdev-events","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmovntains%2Fdev-events/lists"}