| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280 |
- /* tslint:disable:no-console */
- import chalk from 'chalk';
- import program from 'commander';
- import detectPort from 'detect-port';
- import fs from 'fs-extra';
- import Listr from 'listr';
- import os from 'os';
- import path from 'path';
- import { Observable } from 'rxjs';
- import { gatherUserResponses } from './gather-user-responses';
- import {
- checkDbConnection,
- checkNodeVersion,
- checkThatNpmCanReadCwd,
- getDependencies,
- installPackages,
- isSafeToCreateProjectIn,
- shouldUseYarn,
- } from './helpers';
- import { LogLevel } from './types';
- // tslint:disable-next-line:no-var-requires
- const packageJson = require('../package.json');
- const REQUIRED_NODE_VERSION = '>=8.9.0';
- checkNodeVersion(REQUIRED_NODE_VERSION);
- let projectName: string | undefined;
- // Set the environment variable which can then be used to
- // conditionally modify behaviour of core or plugins.
- const createEnvVar: import('@vendure/common/lib/shared-constants').CREATING_VENDURE_APP =
- 'CREATING_VENDURE_APP';
- process.env[createEnvVar] = 'true';
- program
- .version(packageJson.version)
- .arguments('<project-directory>')
- .usage(`${chalk.green('<project-directory>')} [options]`)
- .action(name => {
- projectName = name;
- })
- .option(
- '--log-level <logLevel>',
- "Log level, either 'silent', 'info', or 'verbose'",
- /^(silent|info|verbose)$/i,
- 'silent',
- )
- .option('--use-npm', 'Uses npm rather than Yarn as the default package manager')
- .parse(process.argv);
- createApp(projectName, program.useNpm, program.logLevel || 'silent');
- async function createApp(name: string | undefined, useNpm: boolean, logLevel: LogLevel) {
- if (!runPreChecks(name, useNpm)) {
- return;
- }
- console.log(`Welcome to @vendure/create v${packageJson.version}!`);
- console.log();
- console.log(`Let's configure a new Vendure project. First a few questions:`);
- console.log();
- const root = path.resolve(name);
- const appName = path.basename(root);
- const {
- dbType,
- usingTs,
- configSource,
- indexSource,
- indexWorkerSource,
- populateProducts,
- } = await gatherUserResponses(root);
- const useYarn = useNpm ? false : shouldUseYarn();
- const originalDirectory = process.cwd();
- process.chdir(root);
- if (!useYarn && !checkThatNpmCanReadCwd()) {
- process.exit(1);
- }
- const packageJsonContents = {
- name: appName,
- version: '0.1.0',
- private: true,
- scripts: {
- 'run:server': usingTs ? 'ts-node index.ts' : 'node index.js',
- 'run:worker': usingTs ? 'ts-node index-worker.ts' : 'node index-worker.js',
- start: useYarn ? 'concurrently yarn:run:*' : 'concurrently npm:run:*',
- },
- };
- console.log();
- console.log(`Setting up your new Vendure project in ${chalk.green(root)}`);
- console.log('This may take a few minutes...');
- console.log();
- const tasks = new Listr([
- {
- title: 'Installing dependencies',
- task: (() => {
- return new Observable(subscriber => {
- subscriber.next('Creating package.json');
- fs.writeFileSync(
- path.join(root, 'package.json'),
- JSON.stringify(packageJsonContents, null, 2) + os.EOL,
- );
- const { dependencies, devDependencies } = getDependencies(usingTs, dbType);
- subscriber.next(`Installing ${dependencies.join(', ')}`);
- installPackages(root, useYarn, dependencies, false, logLevel)
- .then(() => {
- if (devDependencies.length) {
- subscriber.next(`Installing ${devDependencies.join(', ')}`);
- return installPackages(root, useYarn, devDependencies, true, logLevel);
- }
- })
- .then(() => subscriber.complete())
- .catch(err => subscriber.error(err));
- });
- }) as any,
- },
- {
- title: 'Generating app scaffold',
- task: ctx => {
- return new Observable(subscriber => {
- const assetPath = (fileName: string) => path.join(__dirname, '../assets', fileName);
- const rootPathScript = (fileName: string): string =>
- path.join(root, `${fileName}.${usingTs ? 'ts' : 'js'}`);
- ctx.configFile = rootPathScript('vendure-config');
- fs.writeFile(ctx.configFile, configSource)
- .then(() => {
- subscriber.next(`Created config`);
- return fs.writeFile(rootPathScript('index'), indexSource);
- })
- .then(() => {
- subscriber.next(`Created index`);
- return fs.writeFile(rootPathScript('index-worker'), indexWorkerSource);
- })
- .then(() => {
- subscriber.next(`Created worker`);
- if (usingTs) {
- return fs.copyFile(
- assetPath('tsconfig.template.json'),
- path.join(root, 'tsconfig.json'),
- );
- }
- })
- .then(() => createDirectoryStructure(root))
- .then(() => {
- subscriber.next(`Created directory structure`);
- return copyEmailTemplates(root);
- })
- .then(() => {
- subscriber.next(`Copied email templates`);
- subscriber.complete();
- })
- .catch(err => subscriber.error(err));
- });
- },
- },
- {
- title: 'Initializing server',
- task: async ctx => {
- try {
- if (usingTs) {
- // register ts-node so that the config file can be loaded
- require(path.join(root, 'node_modules/ts-node')).register();
- }
- const { populate } = await import(
- path.join(root, 'node_modules/@vendure/core/dist/cli/populate')
- );
- const { bootstrap } = await import(
- path.join(root, 'node_modules/@vendure/core/dist/bootstrap')
- );
- const { config } = await import(ctx.configFile);
- const assetsDir = path.join(__dirname, '../assets');
- const initialDataPath = path.join(assetsDir, 'initial-data.json');
- const port = await detectPort(3000);
- const bootstrapFn = async () => {
- await checkDbConnection(config.dbConnectionOptions, root);
- return bootstrap({
- ...config,
- port,
- silent: logLevel === 'silent',
- dbConnectionOptions: {
- ...config.dbConnectionOptions,
- synchronize: true,
- },
- workerOptions: {
- runInMainProcess: true,
- },
- importExportOptions: {
- importAssetsDir: path.join(assetsDir, 'images'),
- },
- });
- };
- let app: any;
- if (populateProducts) {
- app = await populate(
- bootstrapFn,
- initialDataPath,
- path.join(assetsDir, 'products.csv'),
- );
- } else {
- app = await populate(bootstrapFn, initialDataPath);
- }
- await app.close();
- } catch (e) {
- console.log(e);
- throw e;
- }
- },
- },
- ]);
- try {
- await tasks.run();
- } catch (e) {
- console.error(chalk.red(JSON.stringify(e)));
- process.exit(1);
- }
- const startCommand = useYarn ? 'yarn start' : 'npm run start';
- console.log();
- console.log(chalk.green(`Success! Created a new Vendure server at ${root}`));
- console.log();
- console.log(`We suggest that you start by typing:`);
- console.log();
- console.log(chalk.green(` cd ${name}`));
- console.log(chalk.green(` ${startCommand}`));
- console.log();
- console.log('Happy hacking!');
- process.exit(0);
- }
- /**
- * Run some initial checks to ensure that it is okay to proceed with creating
- * a new Vendure project in the given location.
- */
- function runPreChecks(name: string | undefined, useNpm: boolean): name is string {
- if (typeof name === 'undefined') {
- console.error('Please specify the project directory:');
- console.log(` ${chalk.cyan(program.name())} ${chalk.green('<project-directory>')}`);
- console.log();
- console.log('For example:');
- console.log(` ${chalk.cyan(program.name())} ${chalk.green('my-vendure-app')}`);
- process.exit(1);
- return false;
- }
- const root = path.resolve(name);
- fs.ensureDirSync(name);
- if (!isSafeToCreateProjectIn(root, name)) {
- process.exit(1);
- }
- return true;
- }
- /**
- * Generate the default directory structure for a new Vendure project
- */
- async function createDirectoryStructure(root: string) {
- await fs.ensureDir(path.join(root, 'vendure', 'email', 'test-emails'));
- await fs.ensureDir(path.join(root, 'vendure', 'import-assets'));
- await fs.ensureDir(path.join(root, 'vendure', 'assets'));
- }
- /**
- * Copy the email templates into the app
- */
- async function copyEmailTemplates(root: string) {
- const templateDir = path.join(root, 'node_modules/@vendure/email-plugin/templates');
- try {
- await fs.copy(templateDir, path.join(root, 'vendure', 'email', 'templates'));
- } catch (err) {
- console.error(chalk.red(`Failed to copy email templates.`));
- }
- }
|