Use Build Configs
Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
This commit is contained in:
parent
238571521d
commit
b071f0d5c6
4 changed files with 52 additions and 9 deletions
|
@ -1 +1 @@
|
||||||
use flake .
|
use flake
|
||||||
|
|
50
drupal-nix-flake/.gitignore
vendored
50
drupal-nix-flake/.gitignore
vendored
|
@ -1,7 +1,43 @@
|
||||||
.editorconfig
|
/.direnv/
|
||||||
.gitattributes
|
/.editorconfig
|
||||||
data/
|
/.env
|
||||||
recipes/README.txt
|
/.gitattributes
|
||||||
vendor/
|
/.phpunit.result.cache
|
||||||
web/
|
/bin/
|
||||||
web/core/
|
/data/
|
||||||
|
/phpcs.xml
|
||||||
|
/phpunit.xml
|
||||||
|
/phpstan.neon
|
||||||
|
/vendor/
|
||||||
|
|
||||||
|
/web/.csslintrc
|
||||||
|
/web/.eslintignore
|
||||||
|
/web/.eslintrc.json
|
||||||
|
/web/.ht.router.php
|
||||||
|
/web/.htaccess
|
||||||
|
/web/INSTALL.txt
|
||||||
|
/web/README.md
|
||||||
|
/web/autoload.php
|
||||||
|
/web/core/
|
||||||
|
/web/example.gitignore
|
||||||
|
/web/index.php
|
||||||
|
/web/modules/README.txt
|
||||||
|
/web/modules/contrib/
|
||||||
|
/web/profiles/README.txt
|
||||||
|
/web/profiles/contrib/
|
||||||
|
/web/robots.txt
|
||||||
|
/web/sites/*/files/
|
||||||
|
/web/sites/*/private/
|
||||||
|
/web/sites/*/services*.yml
|
||||||
|
/web/sites/*/settings*.php
|
||||||
|
/web/sites/README.txt
|
||||||
|
/web/sites/default/default.services.yml
|
||||||
|
/web/sites/default/default.settings.php
|
||||||
|
/web/sites/development.services.yml
|
||||||
|
/web/sites/example.settings.local.php
|
||||||
|
/web/sites/example.sites.php
|
||||||
|
/web/sites/simpletest/
|
||||||
|
/web/themes/README.txt
|
||||||
|
/web/themes/contrib/
|
||||||
|
/web/update.php
|
||||||
|
/web/web.config
|
||||||
|
|
8
drupal-nix-flake/build-configs.yaml
Normal file
8
drupal-nix-flake/build-configs.yaml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
name: drupal-nix-flake
|
||||||
|
template: php-drupal
|
||||||
|
parameters:
|
||||||
|
database:
|
||||||
|
name: drupal_nix_flake_example
|
||||||
|
nix:
|
||||||
|
phpPackage: php83
|
|
@ -30,7 +30,6 @@
|
||||||
|
|
||||||
databasePort = 3306;
|
databasePort = 3306;
|
||||||
webPort = 8000;
|
webPort = 8000;
|
||||||
|
|
||||||
in
|
in
|
||||||
with lib;
|
with lib;
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue