diff --git a/src/index.ts b/src/index.ts
index fe5c4b944..b8d9b35f4 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -89,7 +89,7 @@ async function init(): Promise<Config> {
 
 	let configLogger = new Logger('Config');
 	if (!fs.existsSync(configPath)) {
-		throw 'Configuration not found';
+		throw 'Configuration not found - Please run "npm run config" command.';
 	}
 
 	const config = loadConfig();