Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/n0k0/blackd-server
- Owner: N0K0
- Created: 2022-03-21T19:02:52.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-31T14:04:07.000Z (almost 2 years ago)
- Last Synced: 2023-03-10T05:22:20.209Z (over 1 year ago)
- Language: Dockerfile
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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.servicesudo mv /tmp/blackd.service /etc/systemd/system/
podman stop blackd
podman rm blackdsudo systemctl daemon-reload
sudo systemctl enable blackd
sudo systemctl start blackd```