Updated README with new screenshots and a message to allow me to make the repo public, but let people know the pre-alpha status of the project

This commit is contained in:
2023-10-25 10:30:08 -06:00
parent 4413317863
commit cf404eaf1a
14 changed files with 2211 additions and 90 deletions
-12
View File
@@ -30,18 +30,6 @@ fmt:
analyze:
@cargo geiger
## Analyze the project with SonarQube - `cargo install cargo-sonar`
# sonar-scanner must be installed and the LastPass CLI must be installed
sonar:
@cargo clippy --message-format json > /tmp/clippy-report.json &&\
cargo sonar --issues clippy --clippy-path /tmp/clippy-report.json --issues-path /tmp/sonar-issues.json &&\
sonar-scanner\
-Dsonar.projectKey=Managarr\
-Dsonar.sources=.\
-Dsonar.externalIssuesReportPaths=/tmp/sonar-issues.json\
-Dsonar.host.url="$$(lpass show --url $$(basename $$(pwd)))"\
-Dsonar.login="$$(lpass show --password $$(basename $$(pwd)))"
release:
@git tag -a ${V} -m "Release ${V}" && git push origin ${V}