A simple Vite-based website for PyCon events.
- Node.js (version 14 or higher)
- npm or yarn
-
Install dependencies
npm install
-
Start development server
npm run dev
This will start the development server, typically at
http://localhost:5173 -
Build for production
npm run build
This creates a
dist/folder with the production build -
Preview production build
npm run preview
This serves the production build locally for testing
src/- Source files (JavaScript and CSS)public/- Static assets (SVG icons, etc.)dist/- Production build outputindex.html- Main HTML fileabout.html- About page
- Vite (build tool)
- Tailwind CSS (styling)
- Alpine.js (JavaScript framework)
- GSAP (animations)