Michael Bromley e2f799c78b feat(create): Improve config defaults před 4 roky
..
gitignore.template 3a7de838e8 chore(create): Add `dist` to gitignore před 6 roky
index-worker.hbs d6e4af5969 feat(core): Export startJobQueue helper from boostrapWorker() před 4 roky
index.hbs 7c633860da feat: create @vendure/create package před 6 roky
migration.hbs 746abff9d3 feat(create): Rework folder structure, add build & migration scripts před 6 roky
readme.hbs 4e2784f5d1 feat(create): Generate README file with new projects před 6 roky
tsconfig.template.json 746abff9d3 feat(create): Rework folder structure, add build & migration scripts před 6 roky
vendure-config.hbs e2f799c78b feat(create): Improve config defaults před 4 roky

readme.hbs

# {{ name }}

This project was generated with [`@vendure/create`](https://github.com/vendure-ecommerce/vendure/tree/master/packages/create).

## Directory structure

* `/src` contains the source code of your Vendure server. All your custom code and plugins should reside here.
* `/static` contains static (non-code) files such as assets (e.g. uploaded images) and email templates.

## Development

```
yarn start
# or
npm run start
```

will start the Vendure server and [worker](https://www.vendure.io/docs/developer-guide/vendure-worker/) processes from
the `src` directory.

{{#if isTs}}## Build

```
yarn build
# or
npm run build
```

will compile the TypeScript sources into the `/dist` directory.{{/if}}

## Migrations

[Migrations](https://www.vendure.io/docs/developer-guide/migrations/) allow safe updates to the database schema.

The following npm scripts can be used to generate migrations:

```
yarn migration:generate [name]
# or
npm run migration:generate [name]
```

run any pending migrations that have been generated:

```
yarn migration:run
# or
npm run migration:run
```

and revert the most recently-applied migration:

```
yarn migration:revert
# or
npm run migration:revert
```