Buddies of Budgie website
https://buddiesofbudgie.org
|
|
||
|---|---|---|
| .github | ||
| .husky | ||
| .vscode | ||
| .woodpecker | ||
| .yarn/patches | ||
| public | ||
| src | ||
| .cursorrules | ||
| .env.template | ||
| .git-blame-ignore-revs | ||
| .gitignore | ||
| .nvmrc | ||
| .yarnrc.yml | ||
| biome.json | ||
| CODEOWNERS | ||
| components.json | ||
| global.d.ts | ||
| LICENSE.md | ||
| next-env.d.ts | ||
| next.config.js | ||
| package.json | ||
| postcss.config.mjs | ||
| README.md | ||
| tsconfig.json | ||
| vercel.json | ||
| yarn.lock | ||
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 enableyarn set version berryyarn 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
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.