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

3 jaren geleden
3 jaren geleden
3 jaren geleden
3 jaren geleden
3 jaren geleden
3 jaren geleden
3 jaren geleden
3 jaren geleden
3 jaren geleden
3 jaren geleden
123456789101112131415161718192021222324252627282930313233343536373839404142
  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. The important things to install:
  19. * Java 11
  20. * Maven 3
  21. * PostgreSQL 12
  22. * Redis
  23. * Python 3
  24. * Packer
  25. * Required tools: curl, jq, uuid, sha256sum, openssl, ssh, scp, rsync, npm, webpack, unzip
  26. Look at the `first_time_ubuntu.sh` script and ensure you've basically done all that it does,
  27. including creating PostgreSQL users/databases.
  28. If you get Bubble working on another platform and are feeling generous, please create a
  29. `./bin/first_time_some_new_os.sh` file to capture your work and submit a pull request so
  30. it can be shared with others.