Projects

CLI Projects β€” WoWSQL Docs

CLI Projects

Manage your WoWSQL projects from the command line

List Projects

View all your projects:

wowsql projects list

You can also use the shorter alias:

wowsql project list

Set Default Project

Set a project as the default for all commands:

wowsql projects set-default your-project-slug

After setting a default project, you can run commands without the --project flag.

Link Project

Link a project to your current directory. This allows you to run commands without specifying the project:

cd my-project
wowsql link my-project-slug

After linking, you can run commands from this directory without the --project flag.

Output Formats

List projects in JSON format (useful for scripting):

wowsql projects list --format json | jq '.[0].slug'