Buddies of Budgie website https://buddiesofbudgie.org
Find a file
Joshua Strobl 91fa10bccd
Some checks failed
ci/woodpecker/push/build Pipeline failed
fix: not-found still providing metadata to PageBase
2026-01-26 14:48:58 +02:00
.github fix: add github-specific readme before archiving it on that forge 2026-01-13 20:24:25 +02:00
.husky move back to yarn, but use yarn 3 over npm+npm-check since it handles module resolution and monorepo deps upgrades better 2022-11-25 14:17:19 +02:00
.vscode feat: nextjs app router conversion, updated design using tailwindcss + shadcn 2026-01-25 22:14:51 +02:00
.woodpecker ci: fix error on vercel deploy of prebuilt being used with build phase not using prod target 2026-01-13 22:18:29 +02:00
.yarn/patches implement strict eslint rules 2023-05-13 16:55:33 +03:00
public fix: mobile nav buttons not having links 2026-01-26 14:45:58 +02:00
src fix: not-found still providing metadata to PageBase 2026-01-26 14:48:58 +02:00
.cursorrules chore: code cleanup and next 16 upgrade 2026-01-11 20:37:59 +02:00
.env.template ci: enable woodpecker + vercel deployment 2026-01-13 22:00:13 +02:00
.git-blame-ignore-revs Add our .git-blame-ignore-revs to ignore our formatting commit 2022-06-01 01:20:01 +03:00
.gitignore Prep for release 2023-07-21 15:57:09 +03:00
.nvmrc feat: initial write-up of Budgie 10.10 post (#10) 2026-01-10 21:37:53 +02:00
.yarnrc.yml Write-up of State of the Budgie for 2023 and looking towards rest of year (#6) 2024-01-26 22:42:14 +02:00
biome.json feat: nextjs app router conversion, updated design using tailwindcss + shadcn 2026-01-25 22:14:51 +02:00
CODEOWNERS Add CODEOWNERS 2023-09-17 18:10:11 +03:00
components.json feat: nextjs app router conversion, updated design using tailwindcss + shadcn 2026-01-25 22:14:51 +02:00
global.d.ts chore: code cleanup and next 16 upgrade 2026-01-11 20:37:59 +02:00
LICENSE.md Initial commit. 2022-03-26 23:56:57 +02:00
next-env.d.ts feat: nextjs app router conversion, updated design using tailwindcss + shadcn 2026-01-25 22:14:51 +02:00
next.config.js fix: try fixing umami analytics blocking 2026-01-26 00:55:04 +02:00
package.json feat: nextjs app router conversion, updated design using tailwindcss + shadcn 2026-01-25 22:14:51 +02:00
postcss.config.mjs feat: nextjs app router conversion, updated design using tailwindcss + shadcn 2026-01-25 22:14:51 +02:00
README.md We can probably open things up now :) 2023-07-23 00:33:27 +03:00
tsconfig.json feat: nextjs app router conversion, updated design using tailwindcss + shadcn 2026-01-25 22:14:51 +02:00
vercel.json feat: upgrade to latest nextjs, swap to biome, drop org page in favor of the one on Docusaurus 2025-10-06 20:32:43 +03:00
yarn.lock feat: nextjs app router conversion, updated design using tailwindcss + shadcn 2026-01-25 22:14:51 +02:00

Buddies of Budgie Site

This repository houses the Next.js-based website for Buddies of Budgie, an open source organization building the Budgie Desktop environment.

Development

Getting Started

We leverage nvm (Node Volume Manager) to ensure user across all operating systems can actively contribute and avoid confusion with potentially too old of node versions. We stick to using the latest node.js LTS. To get nvm, follow their steps then run nvm use. If you use nvm across multiple projects, you can do automatic switching in the shell following this documentation.

To upgrade dependencies interactively, run yarn upgrade-interactive

This project uses yarn v3 "berry". To get this, run:

  • corepack enable
  • yarn set version berry
  • yarn install (for updated lock file and cache generation)

Dependency Installation

To install the required dependencies, run yarn

Running the Development Server

yarn dev

Open http://localhost:3000 with your browser.

Other Useful Documentation