A template repository containing various vibe coding projects while exploring different AI-powered IDEs (Integrated Development Environments). This repository is designed to serve as a starting point for your projects, showcasing how AI can assist in building them.
This repository is set up as a template repository with the following structure:
Vibe-Coding/
βββ pixel-pet/ (Git submodule)
βββ src/
βββ public/
βββ package.json
βββ ...
- Pixel-Pet: A React-based virtual pet project built with Vite. This project showcases React patterns with a playful interface.
To clone this repository along with its submodules, use:
git clone --recursive https://github.com/nyxsky404/Vibe-Coding.git
If you've already cloned the repository without the --recursive
flag, you can fetch the submodules with:
git submodule update --init --recursive
- Node.js (v16 or higher)
- npm or yarn
To work with the Pixel-Pet submodule:
cd pixel-pet
npm install
npm run dev
This will launch the development server for the Pixel-Pet project.
To update the Pixel-Pet submodule to the latest version:
git submodule update --remote pixel-pet
git add pixel-pet
git commit -m "Update Pixel-Pet submodule to latest version"
This repository is set up as a template. To use it as a starting point for your own projects:
- Click the "Use this template" button on GitHub
- Follow the prompts to create a new repository based on this template
- Clone your new repository with submodules using the command above
This project is licensed under the MIT License - see the LICENSE file for details.
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the project
- Create your feature branch (
git checkout -b feature/amazing-feature
) - Commit your changes (
git commit -m 'Add some amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request