The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

system-software.md 1.2 KiB

пре 3 година
пре 3 година
пре 3 година
пре 3 година
пре 3 година
пре 3 година
пре 3 година
1234567891011121314151617181920212223242526272829303132333435
  1. Install Required System Software
  2. ================================
  3. You only need to do this if you're [running from a binary distribution](run-binary.md)
  4. or [building and running from source](dev.md).
  5. If you're using the [Bubble Docker Launcher](docker-launcher.md), skip this step.
  6. ## Why Do This?
  7. You'll need to install some software for Bubble to work correctly.
  8. Bubble needs a PostgreSQL database, Redis, and a bunch of command line tools installed.
  9. It ensures that the appropriate packages are installed and proper databases and database users exist.
  10. You only need to install system software once, ever, on a given system.
  11. ### Ubuntu
  12. For Ubuntu 18.04 and 20.04 systems, run:
  13. ./bin/first_time_ubuntu.sh
  14. ### Mac OS X
  15. For Mac OS X systems, run:
  16. ./bin/first_time_macosx.sh
  17. ### Other Operating Systems
  18. If you are running a different OS or distribution, copy `first_time_ubuntu.sh` to something like:
  19. ./bin/first_time_myoperatingsystem.sh
  20. Then edit it such that all the same packages get installed.
  21. Submit a pull request, and we'll add support for your operating system to the main repository.