Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/n0k0/blackd-server

Just a dead simple container image with what you need to run the python black linter daemon, blackd
https://github.com/n0k0/blackd-server

Last synced: about 22 hours ago
JSON representation

Just a dead simple container image with what you need to run the python black linter daemon, blackd

Awesome Lists containing this project

README

        

# BlackD server

Python linter Black server container

Just a dead simple container image with what you need to run the python black linter daemon, blackd

```
podman run -d -p 45474:45474 --name blackd n0k0/blackd-server
podman generate systemd blackd --new --name > /tmp/blackd.service

sudo mv /tmp/blackd.service /etc/systemd/system/

podman stop blackd
podman rm blackd

sudo systemctl daemon-reload
sudo systemctl enable blackd
sudo systemctl start blackd

```