Create Flow app from scaffold
The Flow CLI provides a command to create an app from examples and templates.
_10flow app create
Example Usage
_11> flow app create my-app_11_11✔ Example_11✔ kitty-items_11Enumerating objects: 5632, done._11Counting objects: 100% (1342/1342), done._11Compressing objects: 100% (692/692), done._11Total 5632 (delta 768), reused 708 (delta 649), pack-reused 4290_11_11Created /Users/dapper/Dev/flyinglimao/flow-cli/test4_11Example kitty-items
Arguments
Path
- Name:
path
- Valid Input: Path
A relative path to the app location. Can be a new folder name or existing empty folder.
You can start with a fully featured example or a custom template.
If you choose example, we will automatically clone a project for you from the list of possible examples: (may not up-to-date):
kitty-items
: An app based on CryptoKitties. (Repo)
If you start with a template, three folders will be generated for you api
, cadence
, and web
.
api
: A place to put your files implementing the backend functionality.cadence
: Cadence contracts, transactions and scripts should be located in this folder.web
: Save your frontend files in this folder. You can use fcl.js to implement a frontend.
Flags
Filter
- Flag:
--filter
- Short Flag:
-x
- Valid inputs: a case-sensitive name of the result property.
Specify any property name from the result you want to return as the only value.
Output
- Flag:
--output
- Short Flag:
-o
- Valid inputs:
json
,inline
Specify the format of the command results.
Save
- Flag:
--save
- Short Flag:
-s
- Valid inputs: a path in the current filesystem.
Specify the filename where you want the result to be saved
Log
- Flag:
--log
- Short Flag:
-l
- Valid inputs:
none
,error
,debug
- Default:
info
Specify the log level. Control how much output you want to see during command execution.
Configuration
- Flag:
--config-path
- Short Flag:
-f
- Valid inputs: a path in the current filesystem.
- Default:
flow.json
Specify the path to the flow.json
configuration file.
You can use the -f
flag multiple times to merge
several configuration files.
Version Check
- Flag:
--skip-version-check
- Default:
false
Skip version check during start up to speed up process for slow connections.