linux - Is there any code written in Python that can be released, automatically brought online, or is a system for preparation and management?
大家讲道理2017-05-16 13:31:07
0
5
671
Is there any code written in Python that can be released, automatically launched, or is a system for preparation and management? I want to make a similar website, but I don’t have any ideas. Can you recommend a related project? Let me study first...
Use git or git hook to specify a script, and the script will be triggered every time you push. Just write deployment and configuration related code in scripts.
https://github.com/voilet/cmdb You can refer to this, written purely in python, using the django framework, an operation and maintenance management platform
Automatically going online is not realistic, but automatic deployment is possible. There are actually quite a few tools. You can try TriAquae, which comes with its own web interface.
Use git or git hook to specify a script, and the script will be triggered every time you push. Just write deployment and configuration related code in scripts.
https://github.com/voilet/cmdb You can refer to this, written purely in python, using the django framework, an operation and maintenance management platform
go cd or Jenkins
Automatically going online is not realistic, but automatic deployment is possible. There are actually quite a few tools. You can try TriAquae, which comes with its own web interface.
For simple functions such as code release and automatic launch, just write a script according to your own needs.
SaltStack is recommended for configuration management. Of course there are some others.