...
Application source code files can go into the main workspace directory, or into sub-directories that you create. This example shows a new/empty workspace – there are no source code files yet.
The '.git' directory contains the Git source control repository.
The '.gitignore' file contains a list of files and directories to be ignored by Git. This is useful when your project contains files that you don't want to commit to source control, such as dependencies from NPM (node_modules), etc.
The '.noderun' directory contains the workspace settings, which are stored in JSON files.
The 'public' directory is where you can place static files that are designed to be served via HTTP, such as images, style sheets, client-side JavaScript files, etc.
If a public/extensions/ directory exists, then CSS and JavaScript from that file directory will load automatically with the IDE and applications. See Custom JavaScript and CSS in a Profound.js Workspace
The 'README.md' file is a Markdown file that you can use to show a description of your project.
...