README.txt 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. =======================================================================
  2. iEat - Internet recipe database
  3. Live Demo @VERSION@ @BUILD_DATE@
  4. =======================================================================
  5. This is the Live Demo distribution of iEat. This is a complete
  6. stand-alone iEat application pre-configured to run without any
  7. modification so you can see how iEat works. The only thing you need
  8. besides the Live Demo (which you have if you're reading this) is a
  9. Java 5 Runtime Environment (i.e. version 1.5) or higher. You can get a
  10. JRE from Sun at http://java.sun.com/. Other vendors make JREs, any one
  11. of them should work as long as they are version 1.5 or higher.
  12. Starting the Live Demo -----------------------------------------------
  13. To start iEat simply run './start.sh' or '.\start.bat' script (as
  14. appropriate for your operating system). This will start the iEat
  15. application running with the included servlet container. After a brief
  16. moment you should be able to go to the following URL in a browser:
  17. http://localhost:8080/ieat
  18. If you get an error that the JAVA_HOME environment variable is not
  19. defined, you need to set this environment variable, which varies
  20. depending on the operating system you're using. For Unix-like OSes
  21. using sh-derived shells you can run
  22. $ JAVA_HOME=/path/to/jdk ./start.sh
  23. For Windows users you can run
  24. > set JAVA_HOME=\path\to\jdk
  25. > .\start.bat
  26. From the iEat homepage you can browse recipes. The first time you
  27. start the Live Demo, however, there will not be any recipes available.
  28. To add recipes you must log in and add or import recipes.
  29. Stopping the Live Demo -----------------------------------------------
  30. To stop iEat simply run './stop.sh' or '.\stop.bat' script (as
  31. appropriate for your operating system).
  32. Logging into the Live Demo --------------------------------------------
  33. The Live Demo comes configured with an admin-level user so you can log
  34. into the application and add recipes, users, etc. Log in with the
  35. following information:
  36. Username: demo
  37. Password: demo
  38. Limitations of Live Demo ----------------------------------------------
  39. The Live Demo has some limitations from a regular iEat configuration:
  40. - Self registration is disabled. Because registration requires
  41. configuring an SMTP mail server to send emails with this feature
  42. has been disabled. If you want to enable it, you must edit the
  43. <LIVE DEMO HOME>/jakarta-tomcat/conf/Catalina/localhost/ieat.xml
  44. file and change the value of the 'mail.smtp.host' property to a
  45. valid SMTP server you can send emails from. Then run the setup
  46. wizard (Admin > Setup Wizard) to enable the Registration Feature.
  47. Troubleshooting the Live Demo -----------------------------------------
  48. If you run into problems getting the Live Demo running, look at the
  49. <LIVE DEMO HOME>/jakarta-tomcat/logs directory for the application log
  50. files. They may provide clues as to the cause of the problem.