This is a Project to fully rewrite and redesign the KZU Trade Website.
This is the Roadmap/Todo list for this Project, and what still needs to be done. Im open for Contributions!
- Write Readme and Docs (In progress)
- Create Basic Color Palette and other Basic Variables
--
- Create Design in Figma (In progress)
- Implement the Basic Design
- Connect to Backend
- Add email verification
- Add multiple register pages (Currently Designing this), and improve ui
- Add multiple create post pages
Make sure to install dependencies:
# npm
npm install <--- all Packages in the package-lock.json are already with npm, so its recommended to use npm :).
# pnpm
pnpm install
# yarn
yarn install
# bun
bun installStart the development server on http://localhost:3000:
# npm
npm run dev
# pnpm
pnpm dev
# yarn
yarn dev
# bun
bun run devBuild the application for production:
# npm
npm run build
# pnpm
pnpm build
# yarn
yarn build
# bun
bun run buildLocally preview production build:
# npm
npm run preview
# pnpm
pnpm preview
# yarn
yarn preview
# bun
bun run preview