Lucien Cartier-Tilet 67142aceaa
Some checks failed
Publish Docker Images / build-and-publish (push) Has been cancelled
feat: add CI for backend
2025-11-05 02:16:42 +01:00
..
2025-11-05 02:16:42 +01:00

phundrak.com frontend

This is the frontend of phundrak.com, written with Nuxt.

Setup

Environment

Nix Environment

If you use Nix, you can set up your environment using the flake.nix file, which will give you the exact same development environment as I use.

nix develop

If you have direnv installed, you can simply use it to automatically enable this environment. However, I strongly recommend you to read the content of the flake.nix file before doing so, as you should with any Nix-defined environment you did not create.

direnv allow .

Required Tools

To be able to work on this project, you need a Javascript package manager, such as:

  • npm
  • pnpm (recommended)
  • yarn
  • bun

In my case, I use pnpm.

You can skip this if you are already using my Nix environment.

Dependencies

Once you have your environment ready, you can now install the projects dependencies.

# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install

Running the Project

You are now ready to start the development server on http://localhost:3000.

# npm
npm run dev

# pnpm
pnpm dev

# yarn
yarn dev

# bun
bun run dev

Production

Once you are satisfied with the project, you can build the application in production mode.

# npm
npm run build

# pnpm
pnpm build

# yarn
yarn build

# bun
bun run build

You can preview locally the production build too.

# npm
npm run preview

# pnpm
pnpm preview

# yarn
yarn preview

# bun
bun run preview

Check out the deployment documentation for more information.