Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 744 Bytes

File metadata and controls

47 lines (32 loc) · 744 Bytes

Project Hermes

Official website for the E-Cell of NIT Rourkela, built by OpenCode, the institute’s official open-source and cybersecurity club. The platform represents E-Cell’s initiatives in startups, innovation, and entrepreneurship.

Setup

pnpm install

Start the development server:

pnpm dev

Build

pnpm build
pnpm start

Linting and Formatting

Run ESLint manually:

pnpm lint

Format files with Prettier:

pnpm exec prettier --write .

ESLint and Prettier also run automatically on staged files during commits via Husky and lint-staged.

Contributing

git checkout -b your-branch-name
git add .
pnpm commit
git push