Developing
Running the frontends locally for development
App frontend
- Follow the instructions here to set up an app to run locally, up to step 5 (do not do step 6 yet.)
- Make sure Altinn Studio is not running. If it is, run
docker-compose down
from altinn-studio/src/studio
before proceeding with the instructions linked above.
-
In the app that will be running, edit the
<path-to-app>/App/views/Home/Index.cshtml
file, and replacehttps://altinncdn.no/toolkits/altinn-app-frontend/<version>/
withhttp://localhost:8080/
. -
Run the app (from
<path-to-app>/App/
):
dotnet run
or run it directly from VS Code.
- Install frontend dependencies if this has not been done (or dependencies have been updated) (from
src/Altinn.Apps/AppFrontend/react
):
npm ci
npm run install-deps
- Run the app frontend (from
src/Altinn.Apps/AppFrontend/react
):
cd altinn-app-frontend
npm start
This serves altinn-app-frontend at localhost:8080. The command npm start
runs the application with hot reload, which rebuilds the application any time a new change is saved. The page should refresh automatically.
- Start the app in a browser by going to altinn3local.no!
Altinn Studio
-
Follow the instructions in the Altinn Studio README to set up Altinn Studio locally.
-
Stop the
altinn-designer
container:
docker stop altinn-designer
- Install/update dependencies (from
src/studio/src/designer/backend
):
npm ci
npm run gulp-install-deps # Installs front-end dependencies
- Run the designer application (from
src/studio/src/designer/backend
):
npm run gulp # only needed the first time
npm run gulp-develop #or npm run gulp-develop-dashboard
This will both start the backend application with dotnet run
, and serve the front-end application at localhost:8080 with hot reload, which rebuilds the frontend application any time a new change is saved. You might have to refresh the page to see your changes.
- Open Altinn Studio in a browser
Platform Receipt
Open a terminal in src/Altinn.Platform/Altinn.Platform.Receipt
, and run:
npm install
npm run gulp #(only the first time)
npm run gulp-install-deps
npm run gulp-develop
This will build and run receipt back end, and build and copy the receipt frontend to the wwwroot
folder. The application should now be available at localhost:5060/receipt/{instanceOwnerId}/{instanceId}
. The script will also listen to changes in the receipt react app, rebuild and copy the new react app to the wwwroot folder. You might need to refresh to see the changes.