go開発ツールbeegoの基本使い方
1.beegoでapiプロジェクトを作成
bee api ad-core -driver=mysql -conn=root:root@tcp(127.0.0.1:3306)/database
2.beegoでテーブルの操作apiを追加
bee generate appcode -tables="one_table" -driver=mysql -conn="root:root@tcp(127.0.0.1:3306)/schema_one" -level=3
3.beegoツールコマンドを取得
go get github.com/beego/bee
4.apiプロジェクトを実行
bee run data-core > /mnt/logs/data-core/data-core.log &
5.DBに接続文字列を解決
root:passwd@tcp(localhost:3306)/dbname?charset=utf8&loc=Local