The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

system-software.md 1.2 KiB

vor 3 Jahren
vor 3 Jahren
vor 3 Jahren
vor 3 Jahren
vor 3 Jahren
vor 3 Jahren
vor 3 Jahren
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.