deploy-f / df-cli

CLI for deploy-f

Home Page:https://deploy-f.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Deployf Cli

Installation

🪟 via powershell

> Invoke-WebRequest -Uri https://github.com/deploy-f/df-cli/releases/download/v0.5/deployf.exe -OutFile df.exe

🐧 on generic linux

$ curl -LO https://github.com/deploy-f/df-cli/releases/download/v0.5/deployf

Via nuget on any platform

dotnet tool install --global Deployf.Cli

Usage

Set the token

Go to https://v2.d-f.pw/id/Manage/ListPersonalTokens and create a prsonal token. When you have the token, you can save it locally via deployf init $TOKEN command. Or use the TOKEN environment to pass the token. Instead environment variable you can use --token $TOKEN key.

how to build an exe

# building for windows
$ dotnet publish -c Release -r win-x64 -o publish \
	-p:PublishSingleFile=true --self-contained \
	-p:SelfContained=true -p:PublishTrimmed=true

# building for linux
$ dotnet publish -c Release -r linux-x64 -o publish \
	-p:PublishSingleFile=true --self-contained \
	-p:SelfContained=true -p:PublishTrimmed=true

About

CLI for deploy-f

https://deploy-f.com

License:MIT License


Languages

Language:C# 100.0%