rspm create repo

Command to create repos

Terminal
rspm create repo [flags]

Examples

Terminal
  rspm create repo --name=[repo name] --description=[text]
  rspm create repo --name=[repo name]
  rspm create repo --name=[repo name] --authenticated
  rspm create repo --name=[repo name] --type=bioconductor --description=[text]
  rspm create repo --name=[repo name] --type=python --description=[text]

Options

Terminal
      --authenticated         Require authentication for this repo.
      --description string    Description text. Optional.
  -h, --help                  help for repo
      --name string           The name of the repo or source.
      --succeed-on-existing   Do not return an error if repo already exists
      --type string           Optional. The type of repository. Must be either 'r', 'bioconductor', or 'python'. Defaults to 'r'.

Options inherited from parent commands

Terminal
  -a, --address string             The address of the remote server. If not specified, the PACKAGEMANAGER_ADDRESS environment variable is used.
  -c, --config string              Path to config file
      --insecure-ssl-skip-verify   If true, skip SSL certificate validation. This reduces the security that SSL normally provides.
  -o, --output-format string       Specify the output format 'human' for human-readable output or 'json' for JSON-encoded output. (default "human")
  -v, --verbose                    Provide additional output
Back to top