Skip to content
This repository was archived by the owner on Sep 15, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# backend

Backend api for Banur. Uses websockets to communicate real-time updates to clients.
23 changes: 23 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Security Policy

## Supported Versions
<!--
Use this section to tell people about which versions of your project are
currently being supported with security updates.

| Version | Supported |
| ------- | ------------------ |
| 5.1.x | :white_check_mark: |
| 5.0.x | :x: |
| 4.0.x | :white_check_mark: |
| < 4.0 | :x: |-->
This software is currently in rapid development. Only the latest version is officially supported.

## Reporting a Vulnerability
<!--
Use this section to tell people how to report a vulnerability.

Tell them where to go, how often they can expect to get an update on a
reported vulnerability, what to expect if the vulnerability is accepted or
declined, etc.-->
To report a security vulnerability, send an email to owen@devosmium.xyz (optionally encrypted with A595 CF6C 82E5 34C8 F3D8 7661 2FC7 5F0E 5202 4E06 pgp).

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Where is the full PGP key available?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

On the berkeley keyserver, https://meta.sr.ht/~muirrum.pgp, and IIRC the MIT keyserver

8 changes: 8 additions & 0 deletions contrib/_incr_version
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/sh -eu
old_version="$1"
new_version="$2"
sed -i "s/version = \"$old_version\"/version = \"$new_version\"/" Cargo.toml


git add Cargo.toml
git commit -m "Update version to $new_version"