Config.in 895 B

12345678910111213141516171819202122232425262728293031323334
  1. config BR2_PACKAGE_PYTHON_WEB2PY
  2. bool "python-web2py"
  3. select BR2_PACKAGE_PYTHON_PYDAL # runtime
  4. select BR2_PACKAGE_PYTHON3_ZLIB # runtime
  5. select BR2_PACKAGE_PYTHON3_PYEXPAT # runtime
  6. select BR2_PACKAGE_PYTHON3_SQLITE # runtime
  7. select BR2_PACKAGE_PYTHON_YATL # runtime
  8. help
  9. web2py is a free open source full-stack framework for rapid
  10. development of fast, scalable, secure and portable
  11. database-driven web-based applications.
  12. http://web2py.com
  13. if BR2_PACKAGE_PYTHON_WEB2PY
  14. config BR2_PACKAGE_PYTHON_WEB2PY_INSTALL_ADMIN
  15. bool "install admin panel application"
  16. default y
  17. help
  18. This option install web2py admin panel application.
  19. It can be removed to save space on embedded systems.
  20. if BR2_PACKAGE_PYTHON_WEB2PY_INSTALL_ADMIN
  21. config BR2_PACKAGE_PYTHON_WEB2PY_PASSWORD
  22. string "admin panel password"
  23. default web2py
  24. help
  25. Set the admin panel password.
  26. endif
  27. endif