First, thank you for contributing! Here’s some basics about our codebase.
- Clone the repository and enter it
git clone https://github.com/hackclub/apply.git
cd apply
```sh
2. Install packages & run
```sh
yarn && yarn run dev
- It should now be running, open localhost:8000 to view
In all prose (form labels, text blocks, etc), use rich quotes.
For code formatting, we use Prettier with options.
Before committing, run yarn run fmt
and you’re good to go.
This site uses the Hack Club Design System for all UI primitives (Text, Buttons, etc).
- Use
styled-components
to add any custom styling to DS components. - Whenever style utility props (whitespace, color, etc) might be used, make use of DS’s components.
- If style utility props aren’t needed, use JSX tags or
styled.tag
for performance.