# Managing Projects

Managing projects is actually easy with AugeLab Studio.

Described early in the [Menubar-File](/augelab-studio-interface/menubar-toolbar.md#file) section, you can save-load your project files with `.pmod` extension.

## Handling resource files <a href="#handling-resource-files" id="handling-resource-files"></a>

When haandling resource files, it's best practice to put any resource such as:

* Image files (image, video etc.)
* AI models
* Certificates

in the same folder with the .pmod file.

This way, you'll be able to share your project files and all of external resources without reloading them.

## Exporting Projects to Different Computers <a href="#exporting-projects" id="exporting-projects"></a>

AugeLab Studio .pmod files can be opened on any computer with AugeLab Studio installed.

To keep things simple, organize your resource files (images, weights, files etc.) in the same folder with the .pmod file. Simple folder structure would look like this:

```
  MyProjectFolder
  ├── my_project.pmod
  ├── resources
  │    ├── image1.jpg
  │    ├── model.onnx
  |    └── human_det.weights
```

When you need to move your project to a different computer, just copy the entire folder to the new computer and open the .pmod file with AugeLab Studio. All resource files will be loaded automatically.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.augelab.com/augelab-studio-interface/managing-projects.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
