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

README.md 3.8 KiB

4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. # Bubble: a privacy-first VPN
  2. Bubble helps you start and manage your own private VPN.
  3. It also adds tools to this VPN to improve your internet experience by modifying your traffic: to
  4. remove ads, block malware, and much more.
  5. Visit the [Bubble website](https://getbubblenow.com/) to learn more.
  6. If you're interested in developing on Bubble, see the [Bubble Developer Guide](docs/dev.md).
  7. ## Operating System Support
  8. Once your Bubble is running, any device can connect to it: Windows, Linux, Mac, iOS, Android;
  9. if it supports VPN connections, it will probably work just fine.
  10. However, to launch your own Bubble using this software, you will need a Linux machine to run the launcher.
  11. It *probably* works on MacOS, but it has not been tested and there are likely to be issues. Pull requests are welcome!
  12. ## The Easy Path
  13. If you'd like to enjoy all the benefits of Bubble without going through this hassle, please try out the Bubble launching
  14. service available on [getbubblenow.com](https://getbubblenow.com/).
  15. Any Bubble you launch from [getbubblenow.com](https://getbubblenow.com/) will also be "yours only" -- all Bubbles
  16. disconnect from their launcher during configuration.
  17. ## Getting Started
  18. The setup instructions below assume you are running Ubuntu 20.04. If you're running another flavor of Linux,
  19. you can probably figure out how to get things working. If you're running Mac OS X or Windows, things might be
  20. more difficult.
  21. ### Download a Bubble Distribution
  22. Download the [latest Bubble release](https://jenkins.bubblev.org/public/releases/bubble/latest/bubble.zip)
  23. Open a command-line terminal.
  24. Unzip the file that you downloaded:
  25. unzip bubble.zip
  26. Change directories into the directory containing the files that were unzipped:
  27. cd bubble-Adventure_1.x.x # replace `Adventure_1.x.x` with the version that you downloaded
  28. ### Install System Software
  29. You'll need to install some software for Bubble to work correctly. Run:
  30. ./bin/first_time_ubuntu.sh
  31. This will grab all the submodules and perform an initial build of all components.
  32. You only need to run this command once, ever, on a given system.
  33. It ensures that the appropriate packages are installed and proper databases and database users exist.
  34. `first_time_ubuntu.sh` command uses `apt` commands to install various packages, so Debian (or other Debian-based)
  35. distributions should work fine. If you are running a different OS or distribution, copy that file to something like:
  36. ./bin/first_time_myoperatingsystem.sh
  37. And then edit it such that all the same packages get installed.
  38. Then submit a pull request and we can add support for your operating system to the main repository.
  39. ## Deployment Modes
  40. Bubble runs in three different modes. You'll at least need to run a Local Launcher first, then
  41. decide if you want to use a Remote Launcher to manage multiple Bubble nodes, or just launch a single Bubble
  42. directly from the Local Launcher.
  43. #### Local Launcher Mode
  44. In this mode, Bubble runs locally on your machine. You'll setup the various cloud services required to run Bubble,
  45. and use the Local Launcher to start a Remote Launcher or a Bubble Node.
  46. Learn more about setting up [Local Launcher Mode](docs/local-launcher.md)
  47. #### Remote Launcher Mode
  48. In this mode, Bubble is running in the cloud in Launcher Mode, ready to launch new Bubbles that you can use.
  49. You cannot connect devices to a Bubble in Launcher Mode, you can only use it to launch new Bubbles.
  50. Learn more about setting up [Remote Launcher Mode](docs/remote-launcher.md)
  51. #### Bubble Node Mode
  52. In this mode, the Bubble has been launched by a Local Launcher or a Remote Launcher and is a proper Bubble Node.
  53. You can connect your devices to it and use it as your own private VPN and enhanced internet service.
  54. Learn more about launching a [Bubble Node](docs/launch-node.md)