Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

eden config delete --name config2

Config commands

About configs:

  • Default configs are generated by default. Default config pattern is generated upon make build and stored in eden folder. Also the eden config add default command  is executed.
  • eden config add <name>  - adds the new config copied from default.  
    • --file option - adds from file.
    • If the config with <name> exists return that it already exists
  • eden config delete <name> - removes the config
  • eden config set <name> - sets the config to <name>.  Name is required.
  • eden config list  - displays the config
  • eden config get  <name> - gets the  config <name>.
    • Omitted <name>- gets the current config 
    • --all -gets the config from file
    • --key - shows the param
  • eden start has the option of --config <name> or --config-file <path>

...