first commit

This commit is contained in:
2020-11-03 18:30:14 -08:00
commit 31d8522470
1881 changed files with 345408 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
#!/usr/bin/python3
import pop.hub
def pop_seed():
CONFIG = {
"seed_name": {
"positional": True,
"help": "The name of the project that is being created",
},
"type": {
"default": "p",
"options": ["-t"],
"help": 'The type of project to build, by default make a standalone project, but for a vetical app project pass a "v"',
},
"dyne": {
"options": ["-d"],
"default": [],
"nargs": "*",
"help": "A space delimited list of additional dynamic names for vertical app-merging",
},
}
hub = pop.hub.Hub()
hub.pop.sub.add("pop.mods.conf")
hub.opts = hub.conf.reader.read(CONFIG)
hub.pop.seed.new()