# Project structure
The initial project in the framework consists of multiple different areas (directories) that you'd normally find in any typical Java project. Please note that additional structure areas can be added over the course of the development process. This includes your tests, additional classes, or the libraries created in your project.
# Source
The source code (Source) of the project is located in the folder src\main.
Information
The project folder structure does not correspond 1:1 to a package in the source code. This depends on the project settings and can be customized later.
# Resources
The resources project folder contains the localization files, for example.
# Binaries
The translated Java classes and resources are filed to the bin project folder. The JAR files are built from these later via the build process.
# Libs (during project development)
After the first build process, a new folder with the JAR library appears for the deploy process.
# Test (during project development)
We will create the test folder over the course of the project. This can look as follows.