Skip to content

Initialize all of your projects like a boss. Batch files to the rescue!

Notifications You must be signed in to change notification settings

iamzehan/Windows-Batch-Master

Repository files navigation

Windows-Batch-Master

Initialize projects like a boss. Batch files to the rescue! Open power shell and run the command below. But make sure you're in the correct directory though. I'm gonna have to do more research to make this repository an ideal one, this is just a starter.

  PS E:\ <the_batch_file>.bat <PROJECT_NAME>

Example:


The create_deep_learning_project.bat creates the following project tree:

project_root/
├───.git
├─── README.md
├─── requirements.txt
├───config
├───data
│   ├───external
│   ├───processed
│   └───raw
├───docs
├───experiments
├───models
│   └───pretrained_models
├───notebooks
│   ├───eda
│   ├───evaluation
│   └───model_development
├───outputs
│   └───predictions
├───results
│   ├───figures
│   ├───logs
│   └───model_weights
├───src
│   ├───data_preprocessing
│   ├───evaluate
│   ├───model
│   ├───train
│   └───utils
└───tests
    ├───integration_tests
    └───unit_tests

and there you go, you have a whole git repository initialized along with a template to a nicely organized project. Now get to work!

How to use the Create_Projects.exe software


Find the file at ./EXE Distribution File/dist/

  1. Open the executable file and select browse

1

  1. Select a batch script file

2

  1. Then browse for the path to your project folder. Make sure there are no spaces in the folder name

3

  1. Select the Path_to_your_project_folder

4

  1. Click the process batch file button

6

  1. Check the success message

7

  1. Check your project folder and files

9