Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fimion/badass-bunker
https://github.com/fimion/badass-bunker
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/fimion/badass-bunker
- Owner: fimion
- Created: 2023-04-24T21:44:32.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-16T14:59:36.000Z (over 1 year ago)
- Last Synced: 2024-12-12T20:15:30.780Z (27 days ago)
- Language: Astro
- Size: 1.02 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# The Badass Bunker
A collection of Resources for the Bunkers and Badasses Homebrew community.
## 🗂️ Structure
This is an Astro site so let's discus the setup a bit
### `/src/`
This is where the majority of the code for our project lives. Within it we have a few directories that are important.
#### `/src/content`
This is where all our content lives. If you are wanting to add/edit a resource, this is where it will be. Most homebrew
resources will live in `homebrew` but this will update as we add features.#### `/src/pages`
Need to add a new page that isn't a resource? This is where it'll go.
#### `/src/layouts`
This is where the layouts live. A layout is a special component that wraps an entire page.
#### `/src/components`
Need to make some reusable markup? Put it in here! We can add Astro/Vue/React components.
#### `/src/shared`
This is for files that can be referenced from multiple places.
#### `/src/styles`
Put your global styles in here!
### `/public`
All files in this folder will be bundled into the published site. Add images, fonts, etc here.
## 🧞 Commands
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:3000` |
| `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 |## 👀 Want to learn more?
Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).