This repository has been archived by the owner on Dec 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 76
1.5 File structure
Alex Skrypnyk edited this page Mar 17, 2020
·
4 revisions
Generic file structure of the SaaS site:
.
├── .ahoy.yml
├── .docker
│ ├── Dockerfile.cli
│ ├── Dockerfile.nginx-drupal
│ ├── Dockerfile.php
│ └── Dockerfile.test
├── .env.default
├── .gitignore
├── .gitlab-ci.yml
├── .lagoon.env
├── .lagoon.yml
├── .version.yml
├── README.md
├── config
│ ├── default
│ │ └── README.md
│ └── dev
│ └── README.md
├── docker-compose.yml
├── favicon.ico
├── files
│ ├── .gitkeep
│ └── .htaccess
├── tests
│ ├── behat
│ │ └── features
│ │ ├── .gitkeep
│ │ └── home.feature
│ └── phpunit
│ └── tests
│ └── .gitkeep
└── themes
└── .gitkeep
See the full list of files in https://github.com/govCMS/govcms8-scaffold project.
Some of the files in the repository are "locked" - when any changes to these files pushed to the repository, these changes will be declined and the git push will fail. The "lock" on these files is set by the platform team because they are considered to be internal files required to make the platform function as expected.
Here is a list of "locked" files:
.docker/*
.ahoy.yml
.env.default
.gitlab-ci.yml
.lagoon.yml
.version.yml
README.md
docker-compose.yml