/ProjectManager

General project manager made with python.

Primary LanguagePythonMIT LicenseMIT

Project manager

A project manager made with python. It gives the possibility to create, read and delete projects including the folder. It stores the path in a general index in your home directory.

Installation

git clone https://github.com/Jolumine/ProjectManager.git

Add to path on linux:

Create folder

mkdir bin

Move script the bin folder

mv path/to/repo/manager.py ~/bin/

Make python file executable

cd ~/bin/
sudo chmod +x manager.py

Open bash settings

nano ~/.bashrc

or

nano ~/.bash_profile

Write the following line at the end to add the script to the PATH

export PATH="$PATH:$HOME/bin"

Create alias

alias manager="manager.py"

Refresh

source ~/.bashrc

or

source ~/.bash_profile

Add to path on windows:

Search for systemvariable in the taskbar

path Double click this in your system variables.

Path:

path/to/repo/bin

New

Create a new one and paste the path.

Usage

Fill in the information for every command, when they are requesting some.

create a new project

manager -create 

delete a project

manager -delete 

list all projects

manager -list

show a specific project

manager -show [name of your project]