{{description}}
Clone the repository:
git clone {{repository}} {{project-name}}
cd {{project-name}}
Build and install the project:
just build-release
sudo just install
For alternative packaging methods, use the one of the following recipes:
deb
: runjust build-deb
andsudo just install-deb
rpm
: runjust build-rpm
andsudo just install-rpm
aur
: runjust build-aur
andsudo just install-aur
flatpak
: runjust install-flatpak
(requires [flatpak-builder
][flatpak-builder])
For vendoring, use just vendor
and just vendor-build
A justfile is included with common recipes used by other COSMIC projects:
just build-debug
compiles with debug profilejust run
builds and runs the applicationjust check
runs clippy on the project to check for linter warningsjust check-json
can be used by IDEs that support LSP
{% if license != "None" %}
{% if license != "Dual MIT/Apache-2.0" %} Code is distributed with the [{{license}} license][./LICENSE] {% else %} Code is distributed with the [MIT][./LICENSE-MIT] and [Apache-2.0][./LICENSE-APACHE] licenses {% endif %} {% endif %}