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
- Host: GitHub
- URL: https://github.com/altinn/altinn-studio-cli
- Owner: Altinn
- License: mit
- Created: 2024-01-29T11:56:13.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-01T00:00:32.000Z (over 1 year ago)
- Last Synced: 2025-03-01T01:17:58.016Z (over 1 year ago)
- Language: C#
- Size: 105 KB
- Stars: 1
- Watchers: 17
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```