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.5 KiB

1234567891011121314151617181920212223242526272829
  1. # Bubble Local Launcher Mode
  2. A Bubble in Local Launcher Mode is the starting point for standing up a Bubble in
  3. [Remote Launcher Mode](remote-launcher.md), which you can then use to launch proper Bubbles
  4. in [Bubble Node Mode](launch-node.md).
  5. ### Run Bubble
  6. Run the `./bin/run.sh` script on your local machine to start Bubble in Local Launcher mode.
  7. Once the server is running, it will try to open a browser window to continue configuration.
  8. It will also print out the URL, so if the browser doesn't start correctly, you can paste this
  9. into your browser's location bar.
  10. ### Activation
  11. Your Bubble is running locally in a "blank" mode. It needs an initial "root" account and some basic services configured.
  12. #### Activate via Web UI
  13. The browser-based admin UI should be displaying an "Activate" page. Complete the information on this page and submit the
  14. data. The Bubble Launcher will create an initial "root" account and other basic system configurations.
  15. #### Activate via command line
  16. Copy the file in `config/activation.json`, then edit the file. There are comments in the file to guide you.
  17. After saving the updated file, run this command:
  18. `./bin/bactivate /path/to/activation.json`
  19. After running the above, refresh the web page that opened when the server started. You should see a login page.
  20. You can now login as the admin user using the email address `root@local.local` and the password from your `activation.json` file.
  21. You are now read to Launch Bubble in [Remote Launcher Mode](remote-launcher.md)