├── .ebextensions └── project.config ├── .gitignore ├── Dockerfile ├── README.md ├── composer.json ├── data ├── README.md └── db │ └── README.md ├── docker-compose.yml ├── nginx ├── conf.d │ └── default.conf └── conf │ └── nginx.conf ├── php ├── php.ini └── upload.ini ├── scripts └── htaccess-no-bot.sh ├── tests ├── behat.local.yml.sample ├── behat.params.yml ├── behat.params.yml.sample ├── behat.yml └── features │ ├── bootstrap │ └── FeatureContext.php │ └── homepage.feature ├── wp-content ├── plugins │ └── README.md └── themes │ └── README.md └── wp-root ├── .htaccess ├── README.md └── wp-config.php /.ebextensions/project.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigercoder0218/Wordpress-demo/HEAD/.ebextensions/project.config -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigercoder0218/Wordpress-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigercoder0218/Wordpress-demo/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigercoder0218/Wordpress-demo/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigercoder0218/Wordpress-demo/HEAD/composer.json -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- 1 | SQL Data Folder 2 | -------------------------------------------------------------------------------- /data/db/README.md: -------------------------------------------------------------------------------- 1 | SQL Data Folder 2 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigercoder0218/Wordpress-demo/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /nginx/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigercoder0218/Wordpress-demo/HEAD/nginx/conf.d/default.conf -------------------------------------------------------------------------------- /nginx/conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigercoder0218/Wordpress-demo/HEAD/nginx/conf/nginx.conf -------------------------------------------------------------------------------- /php/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigercoder0218/Wordpress-demo/HEAD/php/php.ini -------------------------------------------------------------------------------- /php/upload.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigercoder0218/Wordpress-demo/HEAD/php/upload.ini -------------------------------------------------------------------------------- /scripts/htaccess-no-bot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigercoder0218/Wordpress-demo/HEAD/scripts/htaccess-no-bot.sh -------------------------------------------------------------------------------- /tests/behat.local.yml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigercoder0218/Wordpress-demo/HEAD/tests/behat.local.yml.sample -------------------------------------------------------------------------------- /tests/behat.params.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigercoder0218/Wordpress-demo/HEAD/tests/behat.params.yml -------------------------------------------------------------------------------- /tests/behat.params.yml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigercoder0218/Wordpress-demo/HEAD/tests/behat.params.yml.sample -------------------------------------------------------------------------------- /tests/behat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigercoder0218/Wordpress-demo/HEAD/tests/behat.yml -------------------------------------------------------------------------------- /tests/features/bootstrap/FeatureContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigercoder0218/Wordpress-demo/HEAD/tests/features/bootstrap/FeatureContext.php -------------------------------------------------------------------------------- /tests/features/homepage.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigercoder0218/Wordpress-demo/HEAD/tests/features/homepage.feature -------------------------------------------------------------------------------- /wp-content/plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigercoder0218/Wordpress-demo/HEAD/wp-content/plugins/README.md -------------------------------------------------------------------------------- /wp-content/themes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigercoder0218/Wordpress-demo/HEAD/wp-content/themes/README.md -------------------------------------------------------------------------------- /wp-root/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigercoder0218/Wordpress-demo/HEAD/wp-root/.htaccess -------------------------------------------------------------------------------- /wp-root/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigercoder0218/Wordpress-demo/HEAD/wp-root/README.md -------------------------------------------------------------------------------- /wp-root/wp-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigercoder0218/Wordpress-demo/HEAD/wp-root/wp-config.php --------------------------------------------------------------------------------