diff --git a/README.md b/README.md index 7b3cabe..c14ee83 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,15 @@ composer create-project zaherg/litepress litepress ### Login information -**Username**: admin +- **Username**: admin +- **Password**: password -**Password**: password \ No newline at end of file +### Reinstall + +If you decided that you want to reset your project and start with a fresh wordpress installation, you can run + +```bash +./install.sh +``` + +check the code to know what the command do. \ No newline at end of file diff --git a/composer.json b/composer.json index 3828ba6..cfedd6c 100644 --- a/composer.json +++ b/composer.json @@ -2,6 +2,7 @@ "name": "zaherg/litepress", "type": "project", "license": "MIT", + "description": "A wordpress scaffolding with sqlite out of the box using composer.", "require": { "johnpbloch/wordpress-core": "^6.5", "johnpbloch/wordpress-core-installer": "*", diff --git a/install.sh b/install.sh index da56283..6bd7afb 100755 --- a/install.sh +++ b/install.sh @@ -13,4 +13,7 @@ echo "- Install and activate query-monitor & disable-updates" wp plugin install query-monitor disable-updates --activate # echo "- Activate extendify" -# wp plugin activate extendify \ No newline at end of file +# wp plugin activate extendify + +echo "- Delete old files" +rm -fr ./public/content/{uploads,upgrade,upgrade-temp-backup,debug.log} \ No newline at end of file