https://github.com/dflock/personal-project-management
Create, scaffold & manage personal projects.
https://github.com/dflock/personal-project-management
personal-project
Last synced: 20 days ago
JSON representation
Create, scaffold & manage personal projects.
- Host: GitHub
- URL: https://github.com/dflock/personal-project-management
- Owner: dflock
- Created: 2021-01-04T08:30:50.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-10-06T17:22:54.000Z (over 4 years ago)
- Last Synced: 2025-10-10T15:25:03.096Z (9 months ago)
- Topics: personal-project
- Language: Shell
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
Awesome Lists containing this project
README
# Personal Project Management
:author: Duncan Lock
This repo contains scripts and other things to help manage personal projects.
## New Project Script
Script for creating/scaffolding new personal projects.
### Requirements
You need `git` installed. See: https://git-scm.com/book/en/v2/Getting-Started-Installing-Git
For Debian/Ubuntu, you can do:
```shell
$ sudo apt install git
```
For public projects (the `--public` flag), creating the GitHub repo requires `gh` to be installed & setup - see https://cli.github.com/
### Installation
```shell
$ sudo cp new-project.sh /usr/bin/new-project
```
### Usage
Create a new project called "test project"
```shell
$ new-project.sh test project
```
Create a new public project called "test project"
```shell
$ new-project.sh --public test project
```