We are a tech squad! We support each other as we learn and grow in our tech careers. We got the idea from Mo Hampton's JuneteenthConf talk, "Breaking into Tech." Learn more about us in an upcoming blog post!
- This website is built using Astro, a static site generator that allows different frameworks to be used. We are using React and Typescript specifically in this Astro project.
- Also see the v1 website for reference.
- Node.js is required (version 18.17.1, 20.3.0, or 22.0.0 or higher). It is recommended that you use Node Version Manager.
- Package Manager like
pnpm
ornpm
to manage the dependencies. Pnpm is recommended. - Astro CLI runs the development server and other development tasks. See the Astro documentation.
- Clone the repo:
git clone https://github.com/cherryontech/website-v2.git
- Go to the source folder:
cd website-v2
- Install dependencies:
pnpm install
ornpm install
- Run the website locally:
pnpm run dev
ornpm run dev
- Visit localhost at http://localhost:4321/
Below are some original notes from the Astro readme.
Inside of your Astro project, you'll see the following folders and files:
/
├── public/
│ └── favicon.svg
├── src/
│ ├── layouts/
│ │ └── Layout.astro
│ └── pages/
│ └── index.astro
└── package.json
To learn more about the folder structure of an Astro project, refer to our guide on project structure.
All commands are run from the root of the project, from a terminal:
Command | Action |
---|---|
pnpm install |
Installs dependencies |
pnpm dev |
Starts local dev server at localhost:4321 |
pnpm build |
Build your production site to ./dist/ |
pnpm preview |
Preview your build locally, before deploying |
pnpm astro ... |
Run CLI commands like astro add , astro check |
pnpm astro -- --help |
Get help using the Astro CLI |
We are using Netlify for deployment and you can view our live project here.
Feel free to check our documentation or jump into our Discord server.