Skip to main content

Initialization

Demo application initialization

To begin this tutorial, the first step is to start the Demo application server and prepare the development environment.

Start the server

Open your operating system terminal and navigate to the root folder where the Netuno platform is installed (for example, 📁 /netuno).

Run the command below to start the server:

./netuno server
Alternative startup method

If the main command does not work or the Demo application is not loaded by default, force startup by specifying the application parameter:

./netuno server app=demo

Choose your Code Editor

You can use your preferred code editor to develop both the backend and frontend of your application.

If you don't already have one, we recommend the following free and open-source options:

Open the project folder

With the code editor open, locate and open the Demo application directory: 📁 apps/demo.

This folder contains all the files and settings of the new application. All development will be done exclusively within this director.

Next steps

With the server running and the files open in the code editor, the environment is ready. Proceed to the next step of the tutorial to begin exploring and modifying the application.