This Python script helps you quickly create new projects in different languages/frameworks and provides Git setup instructions. It’s designed for Windows CMD.
Languages:
Note
Run this script in the repository where you want to create a project.
-
Create new projects in: -> Next.js -> React Native (Expo) -> Go
-
Automatically runs project creation commands in CMD.
-
Prints start/run instructions for each project.
-
Provides Git setup instructions:
-
Asks for your GitHub repository URL.
-
Shows git init and git remote add origin .
-
Shows further commands (git add ., git commit, git push) for manual execution.
- Open CMD and navigate to the folder where you want to create your project:
cd C:\Path\To\Projects
- Run the Python script:
python builder.py
- Follow the prompts: -> Choose the type of project (Next.js, Expo, Go). -> Enter the project name. -> The script will create the project automatically. -> It will print instructions to start/run your project. -> Optionally, it can provide Git setup instructions.
- Python 3.x
- Node.js (for Next.js and Expo)
- Expo CLI installed (optional, will be installed automatically by npx create-expo-app)
- Go installed (for Go projects)
- Git installed (for version control)