Tag Archives: jetbrains
env-file parser for Goland
You can use env-file parser for running and debugging your app in Jetbrains’ products like Goland. It’s pretty simple and works. https://github.com/Ashald/EnvFile
Postgresql: style guide for DataGrip
Place it into xml file and import into DataGrip or another jetbrains’ product
Webstorm deployment is not working on modern mac and IPv6
First of all, get all interfaces:
1 2 3 |
networksetup -listallhardwareports # or ifconfig |
Possible solutions: 1. It’s working but you should do it after every login to your mac:
1 |
sudo ifconfig en7 down # you should check what interface inactivation works for you |
2. In webstorm: Help → Edit custom VM options
1 2 |
-Djava.net.preferIPv4Stack=false -Djava.net.preferIPv6Addresses=true |
Help → Edit custom properties
1 |
deployment.macOs.bannedInterfaces=awdl0,utun0,utun1,utun2,utun3 |
You should also check what interfaces work for you.
Настройка PhpStorm для запуска приложения golang
Нужно зайти в Run → Edit cofigurations → + → Go single file и далее настроить как на картинке. Название брать можно любое :) А Module и Working directory подставляются автоматически. В примере показано, как пробрасывать параметр к запуску бинарника.
Решение проблемы PhpStorm «Value ‘0000-00-00 00:00:00’ can not be represented as java.sql.Timestamp»
Это проблема не PhpStorm, а драйвера JDBC. Для решения нужно обновить строку доступа к базе mySQL с jdbc:mysql://[ip]:3306 на jdbc:mysql://[ip]:3306?zeroDateTimeBehavior=convertToNull Ещё способы: http://stackoverflow.com/questions/782823/handling-datetime-values-0000-00-00-000000-in-jdbc
Создание веток git-репозитория из PhpStorm
Нужно создать локальную ветку и запушить. Ссылки: http://www.jetbrains.com/phpstorm/webhelp/creating-a-new-branch.html http://www.jetbrains.com/phpstorm/webhelp/uploading-a-local-git-repository-push.html http://devnet.jetbrains.net/message/5455304?tstart=0