Folders Overview
Explore and learn about the application folders and files.
Structureβ
From the root folder where Netuno is installed, we can find the π apps
folder.
Inside the π apps
folder is where all the applications available on the Netuno platform are located.
Some applications can be created locally, while others can be external, for example, applications that are clones of GIT repositories.
See the complete structure of a newly created application from the Netuno root folder:
./netuno/ Β ββ ./apps/ Β β ββ ./demo/ Β β β ββ ./... Β β ββ ./minha_app/ Β β ββ ./config/ Β β ββ ./db/ Β β ββ ./docs/ Β β ββ ./public/ Β β β ββ ./images/ Β β β ββ ./scripts/ Β β β ββ ./styles/ Β β ββ ./server/ Β β β ββ ./actions/ Β β β ββ ./components/ Β β β ββ ./core/ Β β β ββ ./reports/ Β β β ββ ./services/ Β β β ββ ./setup/ Β β β ββ ./templates/ Β β ββ ./storage/ Β β ββ ./ui/ Β β ββ ./src/ Β β ββ ./components/ Β β ββ ./containers/ Β β ββ ./styles/ Β ββ ./...
The 'apps' folder contains all the applications available on Netuno.
Initially, this folder already contains the 'demo' application, which, as the name suggests, is a demonstration of Netuno's features.
When a new application is created, a new folder is added containing the same hierarchy of subfolders, as shown above.
Main Foldersβ
Within the application folder, we have the main folders, each with a specific purpose.
The main folders are:
- π config - General settings;
- π dbs - Database-related items;
- π docs - Documentation and other documents in general;
- π public - Public content available directly via URL, such as images, JavaScript, and CSS;
- π server - Backend code, such as services, jobs, templates, reports, and the entire API in general.
- π storage - Organization of files related to data or used in code.
- π ui - Backoffice user interface, frontend code such as dashboards and other features.