DEVELOP ON WINDOWS AS IF IT WAS UNIX

http://gosukiwi-blog.tumblr.com/post/68542618062/develop-on-windows-as-if-it-was-unix

In this post I’d like to share a setup I recently found out and frankly love. I can’t always code on Linux, but I love the terminal and the environment, when working with open source software everything feels just easier, everything fits together without manually duct taping everything together.

With this setup you can get away with most of the simple daily tasks.

I’ll assume you have nothing installed, so starting from scratch…

THE TERMINAL

Windows’ cmd just sucks… Nevertheless there are some nice alternatives out there if you are willing to spend some time googling, recently I found out about cmder, it packages together conemu, msysgit and clink, to give you a really neat terminal with no configuration at all! It even packs the good ol’ monokai theme.

It’s portable so just drop it somewhere on your system. It packs with a bin/ folder, so you can just drop anything you want to run from the terminal there.

Just by using cmder you get git, a decent terminal and most common unix commands (ls, mv, cp, grep, cat, etc)

GIT

It’s already in cmder! Isn’t that neat?

CHOCOLATEY

As we’ll be using the terminal quite a lot, I find Chocolatey to be quite nice!

To install just do @powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin

Do you need to install xampp? cinst xampp.app will do! Remember you can choose where to install it, normally it’s in D:\xampp.

Do you need ruby? cinst ruby

WGET

This little utility is just too good to miss, also, some common utilities (like composer) use it for a quick and easy installation.

To get it just do cinst Wget.

NANO

I really like this little editor for quick editting, cinst nano is everything you need to do if you want it!

It’s important to note that ^W is mapped to close tab so you will have to remove that mapping from cmder’s settings.

VIM

Do you use Vim? cinst vim will do, of course, all vim users religiously know how to install and configure vim…

DUCT TAPING XAMPP

Well… It’s windows after all… I find doing this is easier than installing apache + mysql.

XAMPP does not add anything to Windows PATH so if you want to run php in the command line set PATH=%PATH%;D:\xampp\php, assuming you installed XAMPP in D:\xampp!

If you do php --version you should not get an error, if you do get an error check your XAMPP directory.

Another step, if you are going to use PHP’s pear command, you’ll encounter an error like this

ERROR: failed to mkdir C:\php\pear\data\Auth\Auth\Frontend ERROR: failed to mkdir C:\php\pear\docs\Benchmark\doc ERROR: failed to mkdir C:\php\pear\data\Cache\Container ERROR: failed to mkdir C:\php\pear\docs\Cache_Lite\docs ERROR: failed to mkdir C:\php\pear\docs\Calendar\docs\examples ERROR: failed to mkdir C:\php\pear\docs\Config\docs

This is because XAMPP doesn’t bother to configure pear, so, assuming you installed XAMPP in D:\xampp, do

D: to switch to that partition, then cd D:\xampp\php pear config-set doc_dir d:\xampp\php\pear\docs pear config-set cfg_dir d:\xampp\php\pear\cfg pear config-set data_dir d:\xampp\php\pear\data pear config-set cache_dir d:\xampp\php\pear\cache pear config-set download_dir d:\xampp\php\pear\download pear config-set temp_dir d:\xampp\php\pear\temp pear config-set test_dir d:\xampp\php\pear\tests pear config-set www_dir d:\xampp\php\pear\www

That’s good enough for pear.

CONCLUSION

All in all I’m pretty happy with that setup, and I keep improving it slowly, of course, I’m open to suggestions ;)

Cheers!


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值