-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdev-setup.sh
More file actions
executable file
·44 lines (29 loc) · 806 Bytes
/
dev-setup.sh
File metadata and controls
executable file
·44 lines (29 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/bash -v
# This is more a reminder of the steps than something intended to be run automatically
# needed to set up the test db
sudo apt install sqlite3
# needed for pg test scripts even if pg is running in docker
sudo apt install postgresql-client
# ================
# Install asdf version manaager and golang plugin
# https://asdf-vm.com/
# https://github.com/kennyp/asdf-golang
asdf plugin add golang
# ================
# Manually Download & run https://www.jetbrains.com/go/
# manually set goroot in goland
echo $GOROOT
# e.g. /home/tim/.gvm/gos/go1.9.4
# ================
# for windows build
sudo apt install gcc-mingw-w64-x86-64
# setup docker images to run tests and try things locally
pg/docker-start.sh
(
cd mysql
./docker-first-run.sh
)
(
cd mssql
./docker-first-run.sh
)