mattbnz / meta

Introspection for buffalo applications

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

github.com/gobuffalo/meta/v2

GoDoc

Requirements

  • Go 1.13+
  • Go Modules

Installation

$ go get github.com/gobuffalo/meta/v2

V2 Toml

bin = "bin/coke"
vcs = "git"

[with]
  nodejs = true
  pop = true
  sqlite = false
  webpack = true
  yarn = true

[as]
  api = false
  web = true

V1 Toml

name = "coke"
bin = "bin/coke"
vcs = "git"
with_pop = true
with_sqlite = false
with_dep = false
with_webpack = true
with_nodejs = true
with_yarn = true
with_docker = true
with_grifts = true
as_web = true
as_api = false

About

Introspection for buffalo applications

License:MIT License


Languages

Language:Go 99.0%Language:Makefile 1.0%