Welcome to ProjectCreator! This is a handy tool designed to streamline your workflow and simplify project setup, specifically tailored for Python, C, and C++ projects.
Before you begin, make sure you have Oh My Zsh installed, as an alias will be created in the .zshrc
file.
Clone this repository to your local machine:
git clone https://github.com/Julian1612/ProjectCreator.git
cd ProjectCreator
./install.sh
To create a new project, follow these steps:
-
Open your terminal.
-
Navigate to the directory where you want to create the project.
Run the following command:
create
Follow the instructions provided to set up your new project.
To create a new class, follow these steps:
-
Open your terminal.
-
Navigate to the directory of your project.
Run the following command:
class
Follow the instructions provided to create a new class within your project.
If you're not using Oh My Zsh (what you should definitely do), you'll need to manually add the alias. Open your shell configuration file (e.g., .bashrc, .bash_profile, or .zshrc) and add the following line:
alias create="path_to_the_main.py_from_this_project"
To interact with GitHub's API or perform actions on behalf of your account, you can create a personal access token:
- Go to your GitHub account settings.
- Under "Developer settings," select "Personal access tokens."
- Click on "Generate new token."
- Give your token a name and select the required permissions. For this project, public_repo scope might be sufficient.
- Click "Generate token." Remember to keep your access token secure and do not share it publicly.
Contributions are welcome! If you find any issues, have ideas for improvements or want to add a nother language feel free to submit a pull request.