{"id":28398914,"url":"https://github.com/blitz-js/abandoned-discord-bot","last_synced_at":"2025-07-19T04:35:05.008Z","repository":{"id":66344105,"uuid":"333790317","full_name":"blitz-js/abandoned-discord-bot","owner":"blitz-js","description":"Our very own discord bot!","archived":false,"fork":false,"pushed_at":"2021-01-29T00:38:04.000Z","size":260,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-07-08T02:18:09.373Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/blitz-js.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}},"created_at":"2021-01-28T14:52:47.000Z","updated_at":"2021-02-25T19:25:21.000Z","dependencies_parsed_at":"2023-03-10T23:53:09.301Z","dependency_job_id":null,"html_url":"https://github.com/blitz-js/abandoned-discord-bot","commit_stats":{"total_commits":4,"total_committers":1,"mean_commits":4.0,"dds":0.0,"last_synced_commit":"06ec6b09c4f587f3180c40a114abe529fc80b136"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/blitz-js/abandoned-discord-bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blitz-js%2Fabandoned-discord-bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blitz-js%2Fabandoned-discord-bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blitz-js%2Fabandoned-discord-bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blitz-js%2Fabandoned-discord-bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blitz-js","download_url":"https://codeload.github.com/blitz-js/abandoned-discord-bot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blitz-js%2Fabandoned-discord-bot/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264989974,"owners_count":23694324,"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":[],"created_at":"2025-06-01T06:38:18.877Z","updated_at":"2025-07-19T04:35:04.954Z","avatar_url":"https://github.com/blitz-js.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Blitz.js](https://raw.githubusercontent.com/blitz-js/art/master/github-cover-photo.png)](https://blitzjs.com)\n\nThis is a [Blitz.js](https://github.com/blitz-js/blitz) app.\n\n# **name**\n\n## Getting Started\n\nRun your app in the development mode.\n\n```\nblitz start\n```\n\nOpen [http://localhost:3000](http://localhost:3000) with your browser to see the result.\n\n## Environment Variables\n\nEnsure the `.env.local` file has required environment variables:\n\n```\nDATABASE_URL=postgresql://\u003cYOUR_DB_USERNAME\u003e@localhost:5432/blitz-discord-bot\n```\n\nEnsure the `.env.test.local` file has required environment variables:\n\n```\nDATABASE_URL=postgresql://\u003cYOUR_DB_USERNAME\u003e@localhost:5432/blitz-discord-bot_test\n```\n\n## Tests\n\nRuns your tests using Jest.\n\n```\nblitz test\nor\nyarn test\n```\n\nBlitz comes with a test setup using [Jest](https://jestjs.io/) and [react-testing-library](https://testing-library.com/).\n\n## Commands\n\nBlitz comes with a powerful CLI that is designed to make development easy and fast. You can install it with `npm i -g blitz`\n\n```\n  blitz [COMMAND]\n\n  build     Create a production build\n  console   Run the Blitz console REPL\n  db        Run database commands\n  generate  Generate new files for your Blitz project\n  help      display help for blitz\n  start     Start a development server\n  test      Run project tests\n```\n\nYou can read more about it on the [CLI Overview](https://blitzjs.com/docs/cli-overview) documentation.\n\n## What's included?\n\nHere is the structure of your app.\n\n```\nblitz-discord-bot\n├── app\n│   |── auth\n│   │   ├── components\n│   │   │   └── LoginForm.tsx\n│   │   ├── mutations\n│   │   │   ├── login.ts\n│   │   │   ├── logout.ts\n│   │   │   └── signup.ts\n│   │   └── pages\n│   │       ├── login.tsx\n│   │       └── signup.tsx\n│   ├── auth-utils.ts\n│   ├── validations.ts\n│   ├── components\n│   │   ├── Form.tsx\n│   │   └── LabeledTextField.tsx\n│   ├── hooks\n│   │   └── useCurrentUser.ts\n│   ├── layouts\n│   │   └── Layout.tsx\n│   │── pages\n│   │   ├── _app.tsx\n│   │   ├── _document.tsx\n│   │   ├── 404.tsx\n│   │   ├── index.tsx\n│   │   └── index.test.tsx\n│   └── users\n│   │   └── queries\n│   │       └── getCurrentUser.ts\n├── db\n│   ├── migrations\n│   ├── index.ts\n│   └── schema.prisma\n├── integrations\n├── node_modules\n├── public\n│   ├── favicon.ico\n│   └── logo.png\n├── test\n│   ├── __mocks__\n│   │       └── fileMock.js\n│   ├── setup.ts\n│   └── utils.tsx\n├── utils\n├── .env\n├── .eslintrc.js\n├── .gitignore\n├── .npmrc\n├── .prettierignore\n├── babel.config.js\n├── blitz.config.js\n├── jest.config.js\n├── package.json\n├── README.md\n├── tsconfig.json\n└── yarn.lock\n```\n\nThese files are:\n\n- The `app/` directory is a container for most of your project. This is where you’ll put any pages or API routes.\n\n- `db`/ is where your database configuration goes. If you’re writing models or checking migrations, this is where to go.\n\n- `node_modules/` is where your “dependencies” are stored. This directory is updated by your package manager, so you don’t have to worry too much about it.\n\n- `public/` is a directory where you will put any static assets. If you have images, files, or videos which you want to use in your app, this is where to put them.\n\n- `test/` is a directory where you can put your unit and integration tests.\n\n- `utils/` is a good place to put any shared utility files which you might use across different sections of your app.\n\n- `.babelrc.js`, `.env`, etc. (\"dotfiles\") are configuration files for various bits of JavaScript tooling.\n\n- `blitz.config.js` is for advanced custom configuration of Blitz. It extends [`next.config.js`](https://nextjs.org/docs/api-reference/next.config.js/introduction).\n\n- `jest.config.js` contains config for Jest tests. You can [customize it if needed](https://jestjs.io/docs/en/configuration).\n\n- `package.json` contains information about your dependencies and devDependencies. If you’re using a tool like `npm` or `yarn`, you won’t have to worry about this much.\n\n- `tsconfig.json` is our recommended setup for TypeScript.\n\nYou can read more about it in the [File Structure](https://blitzjs.com/docs/file-structure) section of the documentation.\n\n## Learn more\n\nRead the [Blitz.js Documentation](https://blitzjs.com/docs/getting-started) to learn more.\n\n### The Blitz.js Manifesto\n\nRead the [Blitz Manifesto](https://blitzjs.com/docs/manifesto) to learn the Blitz foundational principles.\n\nBlitz is built on Next.js. For more info on this see [Why use Blitz instead of Next.js](https://blitzjs.com/docs/why-blitz)\n\n## Get in touch\n\nThe Blitz community is warm, safe, diverse, inclusive, and fun! Feel free to reach out to us in any of our communication channels.\n\n- [Website](https://blitzjs.com/)\n- [Slack](https://slack.blitzjs.com/)\n- [Report an issue](https://github.com/blitz-js/blitz/issues/new/choose)\n- [Forum discussions](https://github.com/blitz-js/blitz/discussions)\n- [Sponsors and donations](https://github.com/blitz-js/blitz#sponsors-and-donations)\n- [Contributing Guide](https://blitzjs.com/docs/contributing)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblitz-js%2Fabandoned-discord-bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblitz-js%2Fabandoned-discord-bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblitz-js%2Fabandoned-discord-bot/lists"}