DeniZip (dzp), the Denizen Project Manager, is a command-line tool designed to complement DenizenScript projects.
dzp-rs is a rewrite of the original in Rust.
- Intuitive interface powered by clap
- Customizable project styles
- Detailed script analysis
- Efficient, lightweight
Install with cargo:
cargo install dzpCreate a new directory for your project.
mkdir fiery && cd fieryRun dzp new fiery. This will initialize a project named "fiery" in the current directory. It will prompt you for some information about the project, such as the name, description, and authors. You can skip each prompt by pressing enter.
Description: Set anything on fire
Authors: cool_guy78
Version: 0.1.0
License: MIT
Homepage: https://github.com/cool_guy78/fiery
Repository: https://github.com/cool_guy78/fieryWithout the --style option, you'll see the following tree appear:
.dzp/
├─ project
src/
├─ data/
├─ main/
│ ├─ fiery.dsc
├─ util/
.gitignore
LICENSE
README.mdThe style you choose determines what files are created.
If you're going for a one-file project, consider
--style single.
Project data resides in the .dzp directory, and the Denizen files are pre-fitted with boilerplate code.
To view all the commands and their usage, run dzp help.
MIT © 2021 Skye P.
