https://github.com/olegchuev/portal
Go Buffalo portal for skill up purposes
https://github.com/olegchuev/portal
buffalo golang
Last synced: 4 months ago
JSON representation
Go Buffalo portal for skill up purposes
- Host: GitHub
- URL: https://github.com/olegchuev/portal
- Owner: OlegChuev
- Created: 2023-09-26T07:38:49.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-09-26T17:31:21.000Z (over 1 year ago)
- Last Synced: 2025-01-02T14:21:42.056Z (6 months ago)
- Topics: buffalo, golang
- Language: Go
- Homepage:
- Size: 980 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Welcome to Buffalo
Thank you for choosing Buffalo for your web development needs.
## Database Setup
It looks like you chose to set up your application using a database! Fantastic!
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.
You will also need to make sure that **you** start/install the database of your choice. Buffalo **won't** install and start it for you.
### Create Your Databases
Ok, so you've edited the "database.yml" file and started your database, now Buffalo can create the databases in that file for you:
```console
buffalo pop create -a
```## Starting the Application
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:
```console
buffalo dev
```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.
**Congratulations!** You now have your Buffalo application up and running.
## What Next?
We recommend you heading over to [http://gobuffalo.io](http://gobuffalo.io) and reviewing all of the great documentation there.
Good luck!
[Powered by Buffalo](http://gobuffalo.io)