Run Application and Create Pull Request

Learn how to create a pull request and run your web application for the first time.

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 server

npm run dev: This runs the dev script in package.json file (i.e. sapper dev) that builds the Sapper scripts and starts the development server.

Get hands-on with 1200+ tech skills courses.