-
Notifications
You must be signed in to change notification settings - Fork 41
1.5 File structure
Joseph Zhao edited this page Jun 16, 2020
·
1 revision
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