github.com/bketelsen/buffalo@v0.9.5/generators/newapp/templates/README.md.tmpl (about) 1 # Welcome to Buffalo! 2 3 Thank you for choosing Buffalo for your web development needs. 4 5 {{ if .withPop}} 6 ## Database Setup 7 8 It looks like you chose to set up your application using a {{.dbType}} database! Fantastic! 9 10 The first thing you need to do is open up the "database.yml" file and edit it to use the correct usernames, passwords, hosts, etc... that are appropriate for your environment. 11 12 You will also need to make sure that **you** start/install the database of your choice. Buffalo **won't** install and start {{.dbType}} for you. 13 14 ### Create Your Databases 15 16 Ok, so you've edited the "database.yml" file and started {{.dbType}}, now Buffalo can create the databases in that file for you: 17 18 $ buffalo db create -a 19 {{end}} 20 21 ## Starting the Application 22 23 Buffalo ships with a command that will watch your application and automatically rebuild the Go binary and any assets for you. To do that run the "buffalo dev" command: 24 25 $ buffalo dev 26 27 If you point your browser to [http://127.0.0.1:3000](http://127.0.0.1:3000) you should see a "Welcome to Buffalo!" page. 28 29 **Congratulations!** You now have your Buffalo application up and running. 30 31 ## What Next? 32 33 We recommend you heading over to [http://gobuffalo.io](http://gobuffalo.io) and reviewing all of the great documentation there. 34 35 Good luck! 36 37 [Powered by Buffalo](http://gobuffalo.io)