Skip to content

Latest commit

 

History

History
88 lines (58 loc) · 1.56 KB

File metadata and controls

88 lines (58 loc) · 1.56 KB

NETUNO WEBSITE

Quickly build applications adapted to your business logic.

Requirement

Netuno Platform

Follow the steps here

Automatic Application Install

./netuno app github=netuno-org/website

Website with Bun 🎨

Inside the website folder:

cd website

Execute the Bun install command:

bun install

It needs to execute untrusted scripts of the ESBUILD, then execute:

bun pm trust --all

If needed, to restart the website installation, remove this folder and these files:

rm -rf node_modules
bun install
bun pm trust --all

Now you can start the website with the classic command:

bun run dev

By default, the website runs with Bun.

Running 🚀

In the Netuno root directory run

./netuno server app=website

and it should start both the back-end and the front-end server.

The first run may take a while due to the installation of frontend dependencies.

By default, the Netuno backoffice will be available in:

The OpenAPI will be in:

To start the website:

cd website
bun run dev

By default, the website is available in:

You can auto-start the website with the Netuno server, enabling the command in the config/_development.json:

   "commands": [
      ...
      {
         "path": "website",
         ...
         "enabled": true
      }
   ]