Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/itsjavi/supereffective.gg
Source code of the v3.x website. This project is under low-maintenance mode, and being superseded by pokepc.net
https://github.com/itsjavi/supereffective.gg
livingdex pokedex pokedex-tracker pokemon
Last synced: about 13 hours ago
JSON representation
Source code of the v3.x website. This project is under low-maintenance mode, and being superseded by pokepc.net
- Host: GitHub
- URL: https://github.com/itsjavi/supereffective.gg
- Owner: itsjavi
- License: mit
- Created: 2024-03-27T13:28:11.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-10-26T22:01:01.000Z (13 days ago)
- Last Synced: 2024-10-26T23:26:16.150Z (13 days ago)
- Topics: livingdex, pokedex, pokedex-tracker, pokemon
- Language: TypeScript
- Homepage: https://supereffective.gg
- Size: 21.1 MB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# SuperEffective
[![Check Code Quality](https://github.com/itsjavi/supereffectice.gg/actions/workflows/quality.yml/badge.svg)](https://github.com/itsjavi/supereffectice.gg/actions/workflows/quality.yml)
[![wakatime](https://wakatime.com/badge/user/f2eacdee-569c-4e49-b11f-81a764fb575e/project/838d78e4-9190-4513-9c76-0e7672feab70.svg)](https://wakatime.com/badge/user/f2eacdee-569c-4e49-b11f-81a764fb575e/project/838d78e4-9190-4513-9c76-0e7672feab70)Source code for supereffective.gg 's website.
Data can be found in https://github.com/itsjavi/supereffectice.gg/tree/main/src/lib/data-client
## Prerequisites
You will need Docker (for the local DB and mail server), Node v20 LTS and pnpm v8.
## Quick Start
1. Clone the repository
2. Install dependencies: `pnpm install`
3. Run the website in development mode: run any of: `pnpm dev`.
4. Open http://localhost:3001 or run `pnpm open` to open the website in your browser.
5. You can register with any email. Emails will be logged in the console and also stored under `./local/mails`.Or all in one command: `pnpm build && pnpm dev && pnpm open`
For other scripts, please check the `package.json` files.
## Software Stack
We use the following technologies, services and tools:
- We use Node v20 LTS
- pnpm v8 for package management
- Turborepo (turbo) to accelerate running scripts
- NextJS 14 + React 18 for the website
- CSS Modules for styling without styling libraries
- React Context for state management (to be replaced by Redux Toolkit or Zustand)
- MDX + [FrontMater CMS](https://frontmatter.codes/) as the local/static CMS
- Next Auth, Prisma and Neon.tech PostgreSQL for authentication and dex data storage
- Vercel (Pro tier) for hosting and deployments
- GitHub for hosting static JSON dataset
- CloudFlare for caching and DNS
- Docker, PostgreSQL and Maildev for local development environment
- Other tools: ESLint, Prettier, Husky, etc.## Project Structure
This project is a NextJS application with the following directory structure:
- `blogs`: the MDX content of the website pages
- `public`: static assets (for the UI and also for the CMS pages)
- `scripts`: Maintenance or development scripts
- `src`:
- `app`: Next.js App Router
- `components`: general reusable components
- `config`: general app config (e.g. from env vars, json files or ts code)
- `features/{name}/`: business logic in bounded contexts, following some DDD principles
- `components`: components specific to this domain
- `hooks`: hooks specific to this domain
- `state`: domain state: contexts, objects and types
- `views`: domain views: views composed with many other components
- `lib`: services and utilities specific to this domain
- `hooks`: generic hooks
- `lib`: generic libraries and services, or services that are not specific to a domain
- `pokedata`: helpers to fetch the static data from the dataset CDN, and types
- `mailer`: mail client abstraction supporting `local-fs` and `resend.com`
- `mdx`: helpers to extract and load MDX content from a directory
- `patreon`: Patreon API client abstraction
- `utils`: general purpose utilities
- `styles`: global css styles## Contributing
Contributions are welcome! Please read the [contributing guidelines](./CONTRIBUTING.md) before submitting a PR.
- [Dataset](https://github.com/itsjavi/supereffectice.gg/tree/main/src/lib/data-client)
- [Issue Reports and Tracking](https://github.com/itsjavi/supereffectice.gg/issues)
- [Project Roadmap and Task Board](https://github.com/orgs/supeffective/projects)For other feedback that is not related to issues, please use our [Discord server](https://discord.gg/3fRXQFtrkN)
### Submitting changes to the dataset
The data used in this project can be found as
[minified JSON files](https://github.com/itsjavi/supereffectice.gg/tree/main/src/lib/data-client) in the
`src/lib/data-client` folder of the project. Feel free to report data issues, suggest improvements and changes, or
submit a pull request with the changes or fixes.In order to edit a minified JSON file, you will have to beautify it first. You can use the
[JSON Formatter & Validator](https://jsonformatter.curiousconcept.com/) website to do so.Before submitting a pull request, make sure that the `.min.json` files are minified again. You can use the same
[JSON Formatter & Validator](https://jsonformatter.curiousconcept.com/) website to do so.## License
The original content (graphics and text created by us), and the design of this website is licensed under
[CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/). Before using any material, please read the
license and make sure you follow the terms and conditions, or contact us in case of doubt.The source code of this website is licensed under the [MIT License](./LICENSE), except all the original graphics and
articles that you may find in this repository (which are CC like as above mentioned).