Skip to contents

These functions return the package lists for each installation profile, allowing you to inspect what will be installed before running an installer.

Usage

artaverse_foundation()

artaverse_backend(include_ai = TRUE)

artaverse_frontend()

artaverse_dev()

Arguments

include_ai

Logical. Include AI API packages in backend profile. Default TRUE.

Value

Character vector of package names that will be installed.

Details

Use these functions to preview what each install_*() function will install:

  • artaverse_foundation(): Minimal infrastructure (artcore, artutils)

  • artaverse_backend(): Processing stack without UI

  • artaverse_frontend(): UI stack without heavy processing

  • artaverse_dev(): Development tools

Examples

# Preview what will be installed
artaverse_foundation()
#> [1] "artcore"  "artutils"
artaverse_backend()
#>  [1] "artcore"       "artutils"      "artbenchmark"  "artcurator"   
#>  [5] "artpixeltrace" "artpipelines"  "artgemini"     "artopenai"    
#>  [9] "artopensea"    "artsend"      
artaverse_frontend()
#>  [1] "artcore"     "artutils"    "artauth"     "artshiny"    "modArtist"  
#>  [6] "modBrowse"   "modFrames"   "modGallery"  "modUpload"   "appPlatform"
artaverse_dev()
#> [1] "artcore"    "artutils"   "arthelpers"