An open API service indexing awesome lists of open source software.

https://github.com/altinn/altinn-studio-cli

Command line tool for app development
https://github.com/altinn/altinn-studio-cli

Last synced: over 1 year ago
JSON representation

Command line tool for app development

Awesome Lists containing this project

README

          

# altinn-studio-cli

Command line tool for app development

## Requirements

- .NET 8

## Local installation

### Install from NuGet
To install the tool from NuGet, run the following command:

```
dotnet tool install --global Altinn.Studio.Cli
```

If you already have the tool installed, you can reinstall it by running:

```
dotnet tool update --global Altinn.Studio.Cli
```

### Install from source
To install the tool from source, run the following command:

```
make install-locally
```

If you already have the tool installed, you can reinstall it by running:

```
make reinstall-locally
```

## Upgrading apps

To upgrade an app backend from v7 to v8, navigate to the apps root folder and run the following command:

```
altinn-studio upgrade backend
```

Similarly, to upgrade an app from using frontend v3 to v4, run:

```
altinn-studio upgrade frontend
```