# dial-xl
**Repository Path**: mirrors_epam/dial-xl
## Basic Information
- **Project Name**: dial-xl
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: Apache-2.0
- **Default Branch**: main
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2025-04-30
- **Last Updated**: 2026-04-18
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
DIAL XL
---
## Documentation
The documentation of the project could be found in the [docs](docs) folder.
---
## Run backend locally
Make sure that you have installed java-17; use `java -version` to verify.
Create `application-local.yaml` in [resources](backend/web/src/main/resources) folder.
Copy [application.yaml](backend/web/src/main/resources/application.yaml) to `application-local.yaml`
and replace missing configurations (env-variables) with local one, for example:
```yaml
web:
storage:
local:
projectsFolder: ${PROJECTS_FOLDER}
```
should be replaced to
```yaml
web:
storage:
local:
projectsFolder: /tmp/projects
```
Execute `./gradlew -Dspring.profiles.active=local bootRun` to run a backend server
> [!TIP]
> To run backend using Intellij IDEA - add `local` to Active profiles in Run/Debug configuration.
---