Altinn Studio is the next generation Altinn application development solution. Together with Altinn Apps and Altinn Platform (also part of this repo), this is a complete application development and hosting platform.
Altinn Studio is available at https://altinn.studio.
Read the Altinn Studio documentation to get started.
If you just want to quickly perform tests of your app on your development machine you can follow the instructions on how to run apps locally.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
Clone the Altinn Studio repo and navigate to the folder.
git clone https://github.com/Altinn/altinn-studio
cd altinn-studio
To run Altinn Studio locally, follow the Altinn Studio instructions.
First make sure to follow the prerequisites for Altinn Studio. If you need to develop or debug App-Frontend, you can follow the description in app-frontend-react repository
It's possible to run an app locally in order to test and debug it. It needs a local version of the platform services to work. NOTE: Currently, it is not possible to run Apps and Altinn Studio (designer) in parallel. To run Apps, make sure that none of the containers for Altinn Studio are running, f.ex. by navigating to the root of the altinn-studio repo, and running the command
docker-compose down
-
Navigate to the
development
folder in the altinn-studio repocd src/development
-
Start the loadbalancer container that routes between the local platform services and the app
docker-compose up -d --build
-
Set path to app folder in local platform services. There are two ways to do this:
- Edit the appsettings.json file:
- Open
appSettings.json
in theLocalTest
folder in an editor, for example in Visual Studio Code - Change the setting
"AppRepsitoryBasePath"
to the full path to your app on the disk. Save the file.
- Open
- Define a value using user-secrets. User secrets is a set of developer specific settings that will overwrite values from the
appSettings.json
file when the application is started in developer "mode".dotnet user-secrets set "LocalPlatformSettings:AppRepositoryBasePath" "C:\Repos"
- Edit the appsettings.json file:
-
Start the local platform services (make sure you are in the LocalTest folder)
dotnet run
-
Navigate to the app folder (specified in the step above), and start the app
cd /<path to app on disk>
dotnet run -p App.csproj
- If you need to debug (or run locally) the app front-end, see details in app-frontend-react repository
The app and local platform services are now running locally. If you have configured your hosts as described in the prerequisites, the app can be accessed on altinn3local.no.
Log in with a test user, using your app name and org name. This will redirect you to the app.
If you need to rebuild other react apps, for instance Dashboard or ServiceDevelopment, this can be done by navigating to their respective folders, example src/studio/src/designer/frontend/dashboard
and then run the following build script
yarn run build
Some of the react projects also have various other predefined yarn tasks, which can be viewed in the package.json
file which is located in the root folder of each react project, example src/studio/stc/designer/frontend/dashboard/package.json
Integration tests for local studio.
See readme in studio and Altinn.Apps AppFrontend projects for details on how to run these tests.
The current build is deployed in Kubernetes on Azure.
Automated build/deploy process is being developed.
- React/Redux - The front-end framework
- .NET Core/C# - The back-end framework
- yarn - Package management
- Docker - Container platform
- Kubernetes - Container orchestration
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
- Altinn Studio development team - If you want to get in touch, just create a new issue.
See also the list of contributors who participated in this project.
This project is licensed under the 3-Clause BSD License - see the LICENSE.md file for details.