https://github.com/mengstr/spawnr
Run apps in background and kill them automatically at exit for golang
https://github.com/mengstr/spawnr
Last synced: 2 days ago
JSON representation
Run apps in background and kill them automatically at exit for golang
- Host: GitHub
- URL: https://github.com/mengstr/spawnr
- Owner: mengstr
- License: mit
- Created: 2015-09-29T02:37:18.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-09-29T10:52:12.000Z (over 10 years ago)
- Last Synced: 2023-03-11T04:30:03.517Z (over 3 years ago)
- Language: Go
- Size: 137 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# spawnr
### Run apps in background and kill them automatically at exit for golang
Sometimes you need to have some helper/server applications running in the background to properly run your code. It can be something more advenced like redis/mysql or just some API servers as your backend.
You could then either start them up manually, start developing your code and then remember to shut them all down when finsihed. Or you could have spawnr automatically run your API servers and databases for you and then shut it all down when your code exits.
---
#### Version history
v0.0 - Sep 29 2015 - Started project