mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-31 09:56:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			72 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| const execa = require('execa');
 | |
| 
 | |
| const { trackUsage, captureStderr } = require('./utils/usage');
 | |
| const defaultConfigs = require('./utils/db-configs.js');
 | |
| const clientDependencies = require('./utils/db-client-dependencies.js');
 | |
| const createProject = require('./create-project');
 | |
| 
 | |
| module.exports = async function createQuickStartProject(scope) {
 | |
|   console.log('Creating a quickstart project.');
 | |
|   await trackUsage({ event: 'didChooseQuickstart', scope });
 | |
| 
 | |
|   // get default sqlite config
 | |
|   const client = 'sqlite';
 | |
|   const configuration = {
 | |
|     client,
 | |
|     connection: defaultConfigs[client],
 | |
|     dependencies: clientDependencies({ scope, client }),
 | |
|   };
 | |
| 
 | |
|   await createProject(scope, configuration);
 | |
| 
 | |
|   if (scope.runQuickstartApp !== true) return;
 | |
| 
 | |
|   try {
 | |
|     await trackUsage({ event: 'willBuildAdmin', scope });
 | |
| 
 | |
|     await execa('npm', ['run', 'build', '--', '--no-optimization'], {
 | |
|       stdio: 'inherit',
 | |
|       cwd: scope.rootPath,
 | |
|       env: {
 | |
|         FORCE_COLOR: 1,
 | |
|       },
 | |
|     });
 | |
| 
 | |
|     await trackUsage({ event: 'didBuildAdmin', scope });
 | |
|   } catch (error) {
 | |
|     await trackUsage({
 | |
|       event: 'didNotBuildAdmin',
 | |
|       scope,
 | |
|       error,
 | |
|     });
 | |
| 
 | |
|     await captureStderr('didNotBuildAdmin', error);
 | |
|     process.exit(1);
 | |
|   }
 | |
| 
 | |
|   console.log(`Running your Strapi application.`);
 | |
| 
 | |
|   try {
 | |
|     await trackUsage({ event: 'willStartServer', scope });
 | |
| 
 | |
|     await execa('npm', ['run', 'develop'], {
 | |
|       stdio: 'inherit',
 | |
|       cwd: scope.rootPath,
 | |
|       env: {
 | |
|         FORCE_COLOR: 1,
 | |
|       },
 | |
|     });
 | |
|   } catch (error) {
 | |
|     await trackUsage({
 | |
|       event: 'didNotStartServer',
 | |
|       scope,
 | |
|       error,
 | |
|     });
 | |
| 
 | |
|     await captureStderr('didNotStartServer', error);
 | |
|     process.exit(1);
 | |
|   }
 | |
| };
 | 
