-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 942 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "wp-theme-docker",
"version": "1.2.1",
"description": "A Docker setup for WordPress theme development",
"scripts": {
"start": "docker compose up",
"teardown": "docker compose down",
"rebuild": "docker compose up --force-recreate --build",
"burndown": "echo 'docker compose down --volumes'",
"wp:bash": "docker exec -it --user=dev $(docker ps -q -f name=-wp) bash",
"wp:plugins": "bash bin/plugins.sh",
"wp:no-ssl": "bash bin/no-ssl.sh",
"wp:logs": "tail -f ./app/wp-content/debug.log",
"db:mysql": "docker exec -it $(docker ps -q -f name=-db) mysql -p",
"db:restore": "bash bin/restore_db.sh",
"db:devify": "bash bin/devify.sh"
},
"author": "Denman Digital",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/Denman-Digital/wp-theme-docker"
}
}