This is the frontend of https://nierrein.guide/.
You can join our Discord server to chat and contribute : https://discord.gg/swgHJJdt7f
- Guides (How to...)
- Loadouts (presets of teams for PvE, PvP, Dungeons...)
- Tier lists (for PvE and PvP)
- Characters and their costumes
- Database (3D Model viewer and all datamined assets)
- Fan Content (Art, Videos, etc.)
- Next.js (React)
- TypeScript
- TailwindCSS
- Node.js (>16.x)
- Copy the
.env.example
file to.env
# If you need READ ONLY keys please join the Discord and check the pins in #website.
S3_ACCESS_KEY=
S3_SECRET_KEY=
S3_DOMAIN=wasabisys.com
REGION=eu-central-1
## API
NEXT_PUBLIC_API_ENDPOINT=https://strapi.nierrein.guide/
NEXT_PUBLIC_GRAPHQL_API_ENDPOINT=https://strapi.nierrein.guide/graphql
API_DUMPS_ENDPOINT=https://reinguide-dumps.s3.eu-central-1.wasabisys.com/
## DISCORD MESSAGES
DISCORD_WEBHOOK_URL_DATA_SUBMISSIONS=
DISCORD_WEBHOOK_URL_NEW_DUMPS=
- Install the dependencies via NPM
npm install
- Run the development server
npm run dev
- Once you're done with the development, you can lint your code by running
npm run lint
npm run fix