Fabric — Learning part1

MicroPyramid
1 min readOct 6, 2017

--

Finally here i am writing my first blog post after a long time to break silence in my techie brain.

Okay, lets start with the story, i can configure Linux production server with uwsgi, nginx, vsftpd, mysql, mongodb, postfix, php, python tools, and other relevant pieces of software single-handedly and i learnt it the hard way and do the hard way for granular performance and security. And there came a pseudo friend of mine asking me why didn’t i do it with fabric which is awesome as i am python expert.

So, let me walk through my experience while i try it for first time.

first install fabric with pip

sudo pip install fabric

then use your favorite editor to create file called

fabfile.py

and save it with the following content.

def hello():
print "Hello dolly"

now lets run it with

$ fab hello
hello dolly
Done.

wow we got it, so we need to keep all the code in fabfile.py (i think this is standard name with my current knowledge) and run functions in it by calling fab

ok, now lets pass some parameters to it

def hello(name="world"):
print("Hello %s" % name)
$ fab hello:name=ashwin
hello ashwin
Done.

this is it for now, lets put it to real use in next part.

i am followed http://docs.fabfile.org/en/1.4.0/tutorial.html in this tutorial.

part 2 Go for it…

target=”_blank”

The article was originally published at MicroPyramid blog.

--

--

MicroPyramid
MicroPyramid

Written by MicroPyramid

Python, Django, Android and IOS, reactjs, react-native, AWS, Salesforce consulting & development company

No responses yet