The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

local-launcher.md 1.4 KiB

1234567891011121314151617181920212223242526272829303132
  1. Bubble Local Launcher Mode
  2. ==========================
  3. A Bubble in Local Launcher Mode is the starting point for standing up any kind of Bubble.
  4. You can use a Local Launcher to:
  5. * [Start a new Bubble directly in Node Mode](launch-node-from-local.md)
  6. * [Start a new Bubble in Remote Launcher Mode](remote-launcher.md) which can then [launch new Bubbles in Node Mode](launch-node-from-remote.md).
  7. ## Run Bubble
  8. Run the `./bin/run.sh` script on your local machine to start Bubble in Local Launcher mode.
  9. Once the server is running, it will try to open a browser window to continue configuration.
  10. It will also print out the URL, so if the browser doesn't start correctly, you can paste this
  11. into your browser's location bar.
  12. ## Activation
  13. Your Bubble is running locally in a "blank" mode. It needs an initial "root" account and some basic services configured.
  14. Follow the [Bubble Activation](activation.md) instructions to configure your Bubble.
  15. ### Resetting everything
  16. If you want undo activation and "start over" with a blank Bubble: first, if your local bubble is still running, stop it.
  17. Then, run:
  18. ./bin/reset_bubble_full
  19. This will remove local files stored by Bubble, and drop the bubble database.
  20. If you run `./bin/run.sh` again, it will be like running it for the first time.
  21. ## Next Steps
  22. You are now read to launch a new Bubble in [Node Mode](launch-node.md), or
  23. a Remote Launcher via [Remote Launcher Mode](remote-launcher.md)