Không có mô tả

Michael Bromley 4798385945 chore: Update changelog 1 năm trước cách đây
.github b8658c59e8 chore: Run workflows on v2.x pushes 1 năm trước cách đây
.vscode 5bab39725a chore(repo): Add VSCode recommended extension for conventional commits with pre-defined scopes (#2812) 1 năm trước cách đây
docs 7003682b71 docs: Regenerate reference docs 1 năm trước cách đây
e2e-common 79e59c9b0d chore: Run vitest tests as ESM 1 năm trước cách đây
packages 483dca6a13 chore: Publish v2.3.3 1 năm trước cách đây
scripts 7114d20ae2 docs: Fix rendering of default values in reference docs 1 năm trước cách đây
.editorconfig d2d77d20d3 chore: Set up root linting & formatting on commit 7 năm trước cách đây
.eslintrc.js d4d84fa76a feat(create): Improve prompts for creating new app 2 năm trước cách đây
.gitignore 5bab39725a chore(repo): Add VSCode recommended extension for conventional commits with pre-defined scopes (#2812) 1 năm trước cách đây
.graphqlconfig 81dc792d45 WIP 2 năm trước cách đây
.lintstagedrc.json be66ac50e9 chore: Exclude dev-server dir from lint-staged 1 năm trước cách đây
.prettierignore 156c9e2938 feat(core): Improved error handling for ShopAPI order resolvers 5 năm trước cách đây
.prettierrc 2fb4bf5fdc chore: Update Prettier config to avoid conflict with tslint 5 năm trước cách đây
CHANGELOG.md 4798385945 chore: Update changelog 1 năm trước cách đây
CHANGELOG_NEXT.md 4a5aec3b43 chore: Pre-release v2.2.0-next.8 1 năm trước cách đây
CHANGELOG_v1.md 629bfd0cd3 chore: Update changelog, archive v1 changelog 2 năm trước cách đây
CONTRIBUTING.md 5ede571bde docs(core): Add @since tags to new APIs 4 năm trước cách đây
LICENSE 5919ce67da docs: Add MIT license, expand readme 7 năm trước cách đây
README.md c2d1ad3b24 docs: Document steps to run tests on Mac and add rollup (#2901) 1 năm trước cách đây
SECURITY.md f8a57534b6 Create SECURITY.md 4 năm trước cách đây
lerna.json 483dca6a13 chore: Publish v2.3.3 1 năm trước cách đây
package-lock.json 483dca6a13 chore: Publish v2.3.3 1 năm trước cách đây
package.json 9457854184 chore: Add explicit v-2 dist tag to publish script 1 năm trước cách đây
schema-admin.json c2eae7ad83 docs: Add docs on the rememberMe option for login 1 năm trước cách đây
schema-shop.json c2eae7ad83 docs: Add docs on the rememberMe option for login 1 năm trước cách đây
tsconfig.json d184e4d36f chore: Fix issues with build configs 1 năm trước cách đây

README.md

Vendure

An open-source headless commerce platform built on Node.js with GraphQL, Nest & TypeScript, with a focus on developer productivity and ease of customization.

Build Status Lerna

vendure-github-social-banner

www.vendure.io

Branches

  • master - The latest stable release, currently the 2.x series.
  • minor - The next patch release, including new features
  • major - The next major release (v3.0)
  • v1 - The 1.x series, which is no longer actively developed but may still receive critical fixes.

Structure

This project is a monorepo managed with Lerna. Several npm packages are published from this repo, which can be found in the packages/ directory.

vendure/
├── docs/           # Documentation source
├── e2e-common/     # Shared config for package e2e tests
├── packages/       # Source for the Vendure server, admin-ui & plugin packages
├── scripts/
    ├── changelog/  # Scripts used to generate the changelog based on the git history
    ├── codegen/    # Scripts used to generate TypeScript code from the GraphQL APIs
    ├── docs/       # Scripts used to generate documentation markdown from the source

Development

The following instructions are for those who want to develop the Vendure core framework or plugins (e.g. if you intend to make a pull request). For instructions on how to build a project using Vendure, please see the Getting Started guide.

1. Install top-level dependencies

npm install

The root directory has a package.json which contains build-related dependencies for tasks including:

  • Building & deploying the docs
  • Generating TypeScript types from the GraphQL schema
  • Linting, formatting & testing tasks to run on git commit & push

2. Build all packages

npm run build

Packages must be built (i.e. TypeScript compiled, admin ui app built, certain assets copied etc.) before being used.

Note that this can take a few minutes.

3. Set up the server

The server requires an SQL database to be available. The simplest option is to use SQLite, but if you have Docker available you can use the dev-server docker-compose file which will start up both MariaDB and Postgres as well as their GUI management tools.

Vendure uses TypeORM, and officially supports MySQL, PostgreSQL and SQLite, though other TypeORM-supported databases may work.

  1. Configure the dev config, making sure the connection settings in the getDbConfig() function are correct for the database type you will be using.
  2. Create the database using your DB admin tool of choice (e.g. phpMyAdmin if you are using the docker image suggested above). Name it according to the getDbConfig() settings. If you are using SQLite, you can skip this step.
  3. Populate mock data:

    cd packages/dev-server
    DB=<mysql|postgres|sqlite> npm run populate
    

    If you do not specify the DB variable, it will default to "mysql".

4. Run the dev server

cd packages/dev-server
DB=<mysql|postgres|sqlite> npm run start

Or if you are in the root package

DB=<mysql|postgres|sqlite> npm run dev-server:start

If you do not specify the DB argument, it will default to "mysql".

Testing admin ui changes locally

If you are making changes to the admin ui, you need to start the admin ui independent from the dev-server:

  1. cd packages/admin-ui
  2. npm run start
  3. Go to http://localhost:4200 and log in with "superadmin", "superadmin"

This will auto restart when you make changes to the admin ui. You don't need this step when you just use the admin ui just to test backend changes.

Testing your changes locally

This example shows how to test changes to the payments-plugin package locally, but it will also work for other packages.

  1. Open 2 terminal windows:
  • Terminal 1 for watching and compiling the changes of the package you are developing
  • Terminal 2 for running the dev-server

    # Terminal 1
    cd packages/payments-plugin
    npm run watch
    

:warning: If you are developing changes for the corepackage, you also need to watch the common package:

# Terminal 1
# Root of the project
npm run watch:core-common
  1. After the changes in your package are compiled you have to stop and restart the dev-server:

    # Terminal 2
    cd packages/dev-server
    DB=sqlite npm run start
    
  2. The dev-server will now have your local changes from the changed package.

Code generation

graphql-code-generator is used to automatically create TypeScript interfaces for all GraphQL server operations and admin ui queries. These generated interfaces are used in both the admin ui and the server.

Running npm run codegen will generate the following files:

Testing

Server Unit Tests

The core and several other packages have unit tests which are can be run all together by running npm run test from the root directory, or individually by running it from the package directory.

Unit tests are co-located with the files which they test, and have the suffix .spec.ts.

If you're getting Error: Bindings not found., please run npm rebuild @swc/core.

End-to-end Tests

Certain packages have e2e tests, which are located at /packages/<name>/e2e/. All e2e tests can be run by running npm run e2e from the root directory, or individually by running it from the package directory.

e2e tests use the @vendure/testing package. For details of how the setup works, see the Testing docs.

When debugging e2e tests, set an environment variable E2E_DEBUG=true which will increase the global Jest timeout and allow you to step through the e2e tests without the tests automatically failing due to timeout.

Release Process

All packages in this repo are released at every version change (using Lerna's fixed mode). This simplifies both the development (tracking multiple disparate versions is tough) and also the developer experience for users of the framework (it is simple to see that all packages are up-to-date and compatible).

To make a release:

1. npm run publish-release

It will run lerna publish which will prompt for which version to update to. Although we are using conventional commits, the version is not automatically being calculated from the commit messages. Therefore the next version should be manually selected.

Next it will build all packages to ensure the distributed files are up to date.

Finally the command will create changelog entries for this release.

2. git push origin master --follow-tags

The reason we do not rely on Lerna to push the release to Git is that this repo has a lengthy pre-push hook which runs all tests and builds the admin ui. This long wait then invalidates the npm OTP and the publish will fail. So the solution is to publish first and then push.

License

MIT