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 Tailwind CSS specifically in this Astro project.
- Node.js version v22.12.0 or higher is required.
- npm is included with Node.js. If you do not have npm installed, install Node.js from the official website: https://nodejs.org/
- Clone the repo:
git clone https://github.com/cherryontech/website-v3.0.git - Go to the source folder:
cd website-v3.0 - Install dependencies:
npm install - Run the website locally:
npm run dev - Visit localhost at http://localhost:4321/
Inside of your Astro project, you'll see the following folders and files:
/
├── public/
│ └── favicon.svg
├── src
│ ├── assets
│ │ └── astro.svg
│ ├── components
│ │ └── Welcome.astro
│ ├── 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 |
|---|---|
npm install |
Installs dependencies |
npm run dev |
Starts local dev server at localhost:4321 |
npm run build |
Build your production site to ./dist/ |
npm run preview |
Preview your build locally, before deploying |
npm run astro ... |
Run CLI commands like astro add, astro check |
npm run astro -- --help |
Get help using the Astro CLI |
Feel free to check our documentation or jump into our Discord server.