Skip to content

Commit c7fdc52

Browse files
committed
polish wording
1 parent 31af6fa commit c7fdc52

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

dev.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
cd playground
1010
git submodule update --init
1111
```
12-
1. Run the `play.sh` under playgound's root directory. This script will guide you to install SQLFlow on a virtualbox VM. If you have a slow Internet connection to Vagrant Cloud, you might want to download the Ubuntu VirtualBox image manually from some mirror sites into `~/.cache/sqlflow/` before running the above script.
12+
1. Run the `play.sh` under playgound's root directory. This script will guide you to install SQLFlow on a virtualbox VM. If you have a slow Internet connection to Vagrant Cloud, you might want to download the Ubuntu VirtualBox image manually from some mirror sites into `~/.cache/sqlflow/` before running the above script. We use `get -c` here for continuing get the file from last breakpoint, so if this command fail, just re-run it.
1313
```bash
1414
mkdir -p $HOME/.cache/sqlflow
15-
curl -Lo $HOME/.cache/sqlflow/ubuntu-bionic64.box \
15+
wget -c -O $HOME/.cache/sqlflow/ubuntu-bionic64.box \
1616
"https://mirrors.ustc.edu.cn/ubuntu-cloud-images/bionic/current/bionic-server-cloudimg-amd64-vagrant.box"
1717
```
1818
The `start.sh` add some extensions for Vagrant, like `vagrant-disksize` which enlarge the disk size of the VM. The script will then call `vagrant up` command to bootup the VM. After the VM is up, the `provision.sh` will be automatically executed which will install the dependencies for SQLFlow. Provision is a one-shot work, after it is done, we will have an environment with SQLFlow, docker and minikube installed.
1919
20-
1. Log on the VM and start SQLFlow playground. Run the `start.bash` script, it will pull some docker images and start the playground minikube cluster. As the pulling of images may be slow, the script might fail sometimes. Fell free to re-run the script untill gou get some output like `Access Jupyter Notebook at ...`.
20+
1. Log on the VM and start SQLFlow playground. Run the `start.bash` script, it will pull some docker images and start the playground minikube cluster. As the images pulling may be slow, the script might fail sometimes. Feel free to re-run the script until gou get some output like `Access Jupyter Notebook at ...`.
2121
```bash
2222
vagrant ssh
2323
sudo su
@@ -31,9 +31,6 @@
3131
minikube stop
3232
```
3333
1. Finally if you want to stop the VM, you can run the `vagrant halt` command. To complete destroy the VM, run the `vagrant destroy` command.
34-
```bash
35-
vagrant halt
36-
```
3734
3835
### For Releaser
3936

0 commit comments

Comments
 (0)