An astro website for Sound Sorcery which is a bi-monthly jam for women & gender diverse baddies in Gadigal Country
This website is built with:
- Astro - A modern static site builder
- Tailwind CSS - Utility-first CSS framework
- Sanity - Headless CMS for content management
- Node.js (v22.x or higher)
- npm or yarn
- Sanity account
-
Clone the repository:
git clone https://github.com/soundsorcerydev/website.git cd website -
Install Dependencies:
npm install # or yarn install -
Set up Environment Variables
- Create a
.envfile in the root directory - Add the following variables:
PUBLIC_SANITY_PROJECT_ID=your_sanity_project_id PUBLIC_SANITY_DATASET=production
npm run dev
# or
yarn devYour site should now be running at http://localhost:4321
Sanity Studio can be accessed at ```http://localhost:4321/admin```
npm run build
# or
yarn buildInside of the Astro project, you'll see the following folders and files:
/
├── astro.config.mjs # Astro configuration
├── public/ # Static assets
├── src/
│ ├── assets/ # Images used
│ ├── components/ # Reusable UI components
│ ├── layouts/ # Page layouts
│ ├── lib/ # Utility functions
│ ├── pages/ # Astro pages
│ ├── sanity/ # Sanity Schema
│ └── styles/ # Global styles
├── sanity.config.ts # Sanity configuration
└── tailwind.config.cjs # Tailwind configuration
└── tsconfig.json # Typescript configuration
MIT License
Copyright (c) [2025] [Ash Sahu]
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.