Build your version of the Remix Austin website.
We encourage you to unleash your creativity and push the boundaries of what's possible. Whether it's a quirky, off-the-wall concept, a polished and professional design, or a visionary glimpse into the future, we want to see your unique take on the Remix Austin website. Let your imagination run wild and build something that excites you.
Feel free to use the tools, technologies, and libraries you are most comfortable with or want to explore. Try out new techniques, collaborate with others, and create a project that highlights your skills and creativity. This is an opportunity to learn, experiment, and build something unique.
- 7:00-7:15p: Eat food & socialize
- 7:15-7:45p: Make teams, plan your project
- 7:45-8:45p: Build all the things!
- 8:45-9:00p: Presentations
Install the dependencies:
npm installStart the development server with HMR:
npm run devYour application will be available at http://localhost:5173.
This template comes with Tailwind CSS already configured for a simple default starting experience. You can use whatever CSS framework you prefer.
Create a production build:
npm run buildTo build and run using Docker:
docker build -t my-app .
# Run the container
docker run -p 3000:3000 my-appThe containerized application can be deployed to any platform that supports Docker, including:
- AWS ECS
- Google Cloud Run
- Azure Container Apps
- Digital Ocean App Platform
- Fly.io
- Railway
If you're familiar with deploying Node applications, the built-in app server is production-ready.
Make sure to deploy the output of npm run build
├── package.json
├── package-lock.json (or pnpm-lock.yaml, or bun.lockb)
├── build/
│ ├── client/ # Static assets
│ └── server/ # Server-side code