Mikkel Høgh wrote: > Actually, I hoped someone would be able to come up with some better > text :)
How's this: Congratulations! Your TurboGears application is up and running. Your journey into the land of rapid web application development has started. If you're wondering where to go from here, check out the list below. Getting started Here are some of the steps you can take to build your TurboGears app: 1. Create your model TurboGears is pre-configured to use SQLite so you can start development immediately. If you want to use a different database, edit the dev.cfg file to uncomment and fill in one of the example dburi's. You can now create your model directly in model.py or you can have the Toolbox do it for you! Remeber to run 'tg-admin sql create' to create the tables in the database. 2. Take control Edit your controllers.py and take use CherryPy to make mapping your application to urls as easy as using Python objects. See the documentation for how you can create your url tree, handle form data, validate input, change the content type returned and create more dynamic urls. 3. Design your view Head on over to the templates directory to edit this page or create your own templates with Kid. Edit your master.kid template to include stuff on every page of your site. Static content, such as css, javascript and images can go in the static directory. For the quickest, easiest dynamic content creation, be sure to look into widgets. 4. And more... There are many cool things you can do to take your application to the next level. Make AJAX easy with Mochikit and JSON, take advantage of the easy identity framework, schedule recurring tasks, easily write tests for your app and more. If you create something cool, consider contributing back to the community. TurboGears is an open source project whose vitality comes from developers like you. Good luck with your web development! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears Docs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/turbogears-docs -~----------~----~----~----~------~----~------~--~---
