is there an IDE for the Go language that can easily deploy/upload files to the server?
ideally I am looking for an IDE that can automatically upload the files to the server each time I decide to run the app, like I can do with PyCharm for python
is there an IDE for the Go language that can easily deploy/upload files to the server?
ideally I am looking for an IDE that can automatically upload the files to the server each time I decide to run the app, like I can do with PyCharm for python
You could use IntelliJ IDEA, now it has working Go plugin, to build the latest plugin, visit this tutorial.
git clone https://github.com/go-lang-plugin-org/go-lang-idea-plugin.gitGo.zip for those who has difficulties (since yesterday)..I use LiteIDE for editing, and command line appcfg.py for uploading. If you are not familiar with command line, here is a quick sample:
appcfg.py update your_app_folder --oauth2
Just save this string somewhere and copy and paste to CMD when you need it.