Skip to main content

Artifactory Setup

Configure access to JFrog Artifactory for your development environment.

Get Your Credentials

  1. Log in to your organization's Artifactory instance
  2. Click your username (top right) and select Edit Profile
  3. In the Identity Tokens section, click Generate
  4. Copy and save your identity token securely

Set Environment Variables

Store your credentials as environment variables for use by package managers.

[System.Environment]::SetEnvironmentVariable("ARTIFACTORY_USERNAME", "your_email@example.com", "User")
[System.Environment]::SetEnvironmentVariable("ARTIFACTORY_IDENTITY_TOKEN", "your_identity_token", "User")

Restart your terminal for changes to take effect.

Next Steps

Configure your package managers to use Artifactory:

  • npm - Node.js packages
  • Maven - Java dependencies
  • pip - Python packages
  • NuGet - .NET packages
  • Cargo - Rust crates