Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/firesquid6/scratch
Command line tool for quickly testing out new ideas and creating minimal reproductions for those nightmare bugs
https://github.com/firesquid6/scratch
linux project-creator project-manager python python3 rofi rofi-scripts
Last synced: 11 days ago
JSON representation
Command line tool for quickly testing out new ideas and creating minimal reproductions for those nightmare bugs
- Host: GitHub
- URL: https://github.com/firesquid6/scratch
- Owner: FireSquid6
- License: mit
- Created: 2023-07-22T20:53:31.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-30T16:56:07.000Z (7 months ago)
- Last Synced: 2024-11-03T21:24:27.107Z (about 2 months ago)
- Topics: linux, project-creator, project-manager, python, python3, rofi, rofi-scripts
- Language: Go
- Homepage:
- Size: 1.26 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Scratch
Scratch is a cli tool for easily creating and navigating your programming projects## Commands
`scratch create ` - creates a new project
`scratch pad ` - creates a new scratchpad
`scratch template ` - creates a new template
`scratch dir` - takes you to your source directory
`scratch projects` - lists all projects
`scratch pads` - lists all scratchpads by name
`scratch elevate ` - elevates the current scratchpad to a project
`scratch archive ` - a## Config File
Example config:
```yaml
projectsDirectory: "~/source"
scratchesDir: "~/scratchpad" # the directory to store temporary scratchpads
autoGit: true # whether scratch will automatically initialize git```