Search⌘ K
AI Features

Run Application and Create Pull Request

Explore how to run your cloud native web application locally using the Sapper template and npm scripts. Learn to create and merge pull requests effectively on GitHub to integrate your web service code with the main branch. This lesson equips you to validate and manage code changes in a cloud native project setup.

Run your web application

As you have completed the setup of the web service, let’s run the app locally with a basic frontend file given on the following path in your repository /services/web/src/routes/index.svelte.

Click Run and a terminal will appear. Use the following commands to run your web application.

cd services/web // Go to the web service directory

npm install // Install dependencies

npm run dev // Runs development
...