first commit

This commit is contained in:
Pedro Cabral
2025-02-05 15:14:00 +01:00
commit 11fe03ca1f
20 changed files with 2439 additions and 0 deletions

44
wp-config.php Normal file
View File

@@ -0,0 +1,44 @@
<?php
/**
* #ddev-generated: Automatically generated WordPress settings file.
* ddev manages this file and may delete or overwrite the file unless this comment is removed.
* It is recommended that you leave this file alone.
*
* @package ddevapp
*/
/** Database charset to use in creating database tables. */
define( 'DB_CHARSET', 'utf8' );
/** The database collate type. Don't change this if in doubt. */
define( 'DB_COLLATE', '' );
/** Authentication Unique Keys and Salts. */
define( 'AUTH_KEY', 'unLqsGLWtBYJYkfagzybyEKSgYNGJLMbRBRSUnqPUWYwpXZvZemfXwUPFoWzIOpW' );
define( 'SECURE_AUTH_KEY', 'fRnJqcOyFpXiHzibAvclySDhWtjaVFIRIypnuDhNiFmDwQhRUmjQvgOrrXAsRUbe' );
define( 'LOGGED_IN_KEY', 'acFYfvfStAGmuZNcdnGWEuvqEnxdBrpjeCnrqWBPDVgyDbAApJvUrxeXGotttIqT' );
define( 'NONCE_KEY', 'YEmiqkBgQbeBEDhXFOxxQVQeJQVOGvEDdGTSCncFsFEEeKIrohnKxzHkEpLhowou' );
define( 'AUTH_SALT', 'AazoanpwobrgdlVmznIoxdJfMVAQRMhFTLTuZnFxoBiTMIHeyPQerLWvOqZUoiqJ' );
define( 'SECURE_AUTH_SALT', 'gMtxXOgZYIIdlcOUcMXngWJCUJAqXgqPSpHsrEqCxcPrzKqApChedImwmSYdcIGN' );
define( 'LOGGED_IN_SALT', 'KNyedMtSRNXGJBNdSalaJZQAzCgzjZnfYJMwYBrzKyvLkxOTEQqanbhEBuHXXJbK' );
define( 'NONCE_SALT', 'LqmFtwfaKEiMbXSrrmBzkeLWFnIvyaaKIFNzAcmdGRJZGBIVJZVrJqSlkBMZLwJb' );
/* Add any custom values between this line and the "stop editing" line. */
/* That's all, stop editing! Happy publishing. */
/** Absolute path to the WordPress directory. */
defined( 'ABSPATH' ) || define( 'ABSPATH', dirname( __FILE__ ) . '/' );
// Include for settings managed by ddev.
$ddev_settings = __DIR__ . '/wp-config-ddev.php';
if ( ! defined( 'DB_USER' ) && getenv( 'IS_DDEV_PROJECT' ) == 'true' && is_readable( $ddev_settings ) ) {
require_once( $ddev_settings );
}
/** Include wp-settings.php */
if ( file_exists( ABSPATH . '/wp-settings.php' ) ) {
require_once ABSPATH . '/wp-settings.php';
}