Added more useful info to README.md

This commit is contained in:
David Allen 2024-06-09 00:22:50 -06:00
parent 050b7a482b
commit 113dee2194
No known key found for this signature in database
GPG key ID: 1D2A29322FBB6FCB

View file

@ -33,10 +33,16 @@ GDPM is an attempt to make a simple, front-end, command-line, package manager de
Common commands for searching, installing, listing, and removing assets.
```bash
gdpm search demo
gdpm install "Third Person Controller" --skip-prompt
# fetch updates local database if "no packages to install" error
gdpm fetch
# search and install "Godot Jolt" globally
gdpm search jolt
gdpm install "Godot Jolt" --skip-prompt
# list installed packages and remove
gdpm list --style=table
gdpm remove "Third Person Controller" --clean
gdpm remove "Godot Jolt" --clean
```
Use `gdpm help` to see full list of commands.
@ -147,7 +153,7 @@ ln -s ../modules/indicators/include/indicators include/indicators
ln -s ../modules/csv2/include/csv2 include/csv2
```
And then build the project:
And then build the binaries (check the "build" directory):
```bash
# Start by cloning the repo, then...