瀏覽代碼

add more help docs

tags/v1.5.4
Jonathan Cobb 3 年之前
父節點
當前提交
a518cce6b6
共有 1 個檔案被更改,包括 24 行新增0 行删除
  1. +24
    -0
      Vagrantfile

+ 24
- 0
Vagrantfile 查看文件

@@ -9,6 +9,11 @@
# dependencies, and build all the code and website. You'll be ready to run a local
# launcher or do dev work on the Bubble codebase.
#
# After a box is launched, use `vagrant ssh` to log in.
# - the code is in ${HOME}/bubble
# - API environment file is ${HOME}/.bubble.env
# - start the API server (local launcher) with `run.sh`
#
# There are a few environment variables that determine how the box is initialized,
# described below.
#
@@ -85,6 +90,25 @@ Vagrant.configure("2") do |config|

# Create env file symlink for running tests
cd ~ && ln -s .bubble.env .bubble-test.env

# Done!
echo "
==================================================================
Bubble Vagrant Setup Complete
==================================================================

Log in to this box using:

vagrant ssh

Once logged in:
- the code is in ${HOME}/bubble
- API environment file is ${HOME}/.bubble.env
- start the API server (local launcher) with `run.sh`

Enjoy!
==================================================================
"
SHELL
end
end

Loading…
取消
儲存