Project Directories
Lumeex use two main directories:
config/
— contains the configuration files used to build the website.output/
— contains the generated website files.
config/
├── site.yaml # site info conf file
├── gallery.yaml # photo gallery conf file
├── photos/
│ ├── gallery # your gallery photos
│ └── hero # your title carrousel photos
└── themes/ # your theme folders
├── modern
└── typewriter
output/ # your static web site ready to deploy
├── index.html
└── ...
- Docker: Those two folder need to be mounted to your container for persistent data. If you delete a file, it will be automatically replaced by default one at container start. By default there are automatically created in the folder where you launch your docker run command or where your compose file is located.