RTSDA-Website/astro-church-website
Benjamin Slingo 756a755ba6 Fix PO BOX display and security vulnerability
- Add getChurchPhysicalAddress and getChurchPoBox functions to church-core
- Update UniFFI interface to expose new functions
- Add NAPI wrappers in astro-church-website for new functions
- Update Footer and contact page to use separate address fields
- Rebuild native bindings with new functions
- Display physical address and PO BOX on separate lines properly
- Fix Astro security vulnerability (GHSA-xf8x-j4p2-f749)

Resolves the missing PO BOX issue that was caused by newline character
handling problems between Rust and JavaScript in production environments.
2025-08-26 17:22:25 -04:00
..
public Add PWA support and fix PO BOX display in address 2025-08-26 16:49:47 -04:00
src Fix PO BOX display and security vulnerability 2025-08-26 17:22:25 -04:00
.gitignore Fix light mode visibility and sermon page filtering 2025-08-23 14:27:42 -04:00
astro.config.mjs Initial commit - source code only with SecondThirdSaturday recurring type fix 2025-08-16 18:28:35 -04:00
build.rs Initial commit - source code only with SecondThirdSaturday recurring type fix 2025-08-16 18:28:35 -04:00
Cargo.toml Fix church-core dependency path in Cargo.toml 2025-08-23 14:33:35 -04:00
DEPLOYMENT.md Fix light mode visibility and sermon page filtering 2025-08-23 14:27:42 -04:00
Dockerfile Fix light mode visibility and sermon page filtering 2025-08-23 14:27:42 -04:00
index.cjs Fix PO BOX display and security vulnerability 2025-08-26 17:22:25 -04:00
index.d.ts Fix PO BOX display and security vulnerability 2025-08-26 17:22:25 -04:00
index.js Fix PO BOX display and security vulnerability 2025-08-26 17:22:25 -04:00
package-lock.json Fix PO BOX display and security vulnerability 2025-08-26 17:22:25 -04:00
package.json Fix light mode visibility and sermon page filtering 2025-08-23 14:27:42 -04:00
README.md Fix light mode visibility and sermon page filtering 2025-08-23 14:27:42 -04:00
tailwind.config.mjs Fix light mode visibility and sermon page filtering 2025-08-23 14:27:42 -04:00
tailwind.dark.config.mjs Fix light mode visibility and sermon page filtering 2025-08-23 14:27:42 -04:00
tailwind.light.config.mjs Fix light mode visibility and sermon page filtering 2025-08-23 14:27:42 -04:00
tsconfig.json Initial commit - source code only with SecondThirdSaturday recurring type fix 2025-08-16 18:28:35 -04:00

Astro Starter Kit: Minimal

npm create astro@latest -- --template minimal

🧑‍🚀 Seasoned astronaut? Delete this file. Have fun!

🚀 Project Structure

Inside of your Astro project, you'll see the following folders and files:

/
├── public/
├── src/
│   └── pages/
│       └── index.astro
└── package.json

Astro looks for .astro or .md files in the src/pages/ directory. Each page is exposed as a route based on its file name.

There's nothing special about src/components/, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.

Any static assets, like images, can be placed in the public/ directory.

🧞 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: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

👀 Want to learn more?

Feel free to check our documentation or jump into our Discord server.