getting-started.md 2.8 KB


title: "Getting Started"

weight: 0

Getting Started

Requirements

  • Node.js v16 or above, with support for even-numbered Node.js versions.
  • The supported TypeScript version is set upon installation. Upgrading to a newer version of TypeScript might result in compilation errors.
  • If you want to use MySQL, MariaDB, or Postgres as your data store, then you'll need an instance available locally. However, if you are just testing out Vendure, we recommend using SQLite, which has no external requirements.

Installation with @vendure/create

The recommended way to get started with Vendure is by using the @vendure/create tool. This is a command-line tool which will scaffold and configure your new Vendure project and install all dependencies.

{{% tab "npx" %}}

npx @vendure/create my-app

{{< alert primary >}} npx comes with npm 5.2+ and higher. {{< /alert >}} {{% /tab %}} {{% tab "npm init" %}}

npm init @vendure my-app

{{< alert primary >}} npm init <initializer> is available in npm 6+ {{< /alert >}} {{% /tab %}} {{% tab "yarn create" %}}

yarn create @vendure my-app

{{< alert primary >}} yarn create is available in Yarn 0.25+ {{< /alert >}} {{% /tab %}}

For other installation options see the @vendure/create documentation.

"my-app" in the above command would be replaced by whatever you'd like to name your new project. Vendure Create will guide you through the setup. When done, you can run:

cd my-app

yarn dev
# or
npm run dev

Assuming the default config settings, you can now access:

{{< alert primary >}} Log in with the superadmin credentials you specified, which default to:

  • username: superadmin
  • password: superadmin {{< /alert >}}

Next Steps

  • Learn more about Configuration of your Vendure server.
  • Get a better understanding of how Vendure works by reading the Architecture Overview
  • Start writing custom plugins with the Plugin guide
  • Learn how to implement a storefront with the GraphQL API Guide