Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shhossain/projecthelper
A simple helper to movet to project directory fast from terminal
https://github.com/shhossain/projecthelper
Last synced: 16 days ago
JSON representation
A simple helper to movet to project directory fast from terminal
- Host: GitHub
- URL: https://github.com/shhossain/projecthelper
- Owner: shhossain
- License: mit
- Created: 2024-04-22T07:42:48.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-04-22T10:26:43.000Z (9 months ago)
- Last Synced: 2024-11-27T13:39:44.392Z (about 2 months ago)
- Language: C++
- Size: 70.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Project Helper
![Demo](https://github.com/shhossain/projectHelper/blob/main/example_projectHelper.gif)## Features
- Quickly navigate to project directories## To-do
- [ ] Project creation feature## Setup for Windows
1. Set the `CODE_PATH` environment variable to the path where your projects are located.
2. Download the [projectHelper.exe](https://github.com/shhossain/projectHelper/releases/download/v0.0.1/projectHelper.exe) file.
3. Add the executable to your system's PATH.
4. Paste the following code into your PowerShell profile (you can open it by running `notepad $PROFILE` in PowerShell):```powershell
function p {
$path = Invoke-Expression "projectHelper.exe $args"
cd $path
}
```