title: "Installation"
import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem';
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.
npx @vendure/create my-shop
Vendure supports a number of different databases. The @vendure/create tool will prompt you to select one.
To quickly test out Vendure, we recommend using SQLite, which requires no external dependencies. You can always switch to a different database later by changing your configuration file.
:::tip If you select MySQL, MariaDB or Postgres, you need to make sure you:
The final prompt will ask whether to populate your new Vendure server with some sample product data.
We recommend you do so, as it will give you a good starting point for exploring the APIs which we will cover in the Try the API section, as well as providing some data to use when building your own storefront.
Next, a project scaffold will be created and dependencies installed. This may take a few minutes.
Once complete, you'll see a message like this:
Follow the instructions to move into the new directory created for your project, and start the server:
cd my-shop
yarn dev
# or
npm run dev
You should now be able to access:
Congratulations! 🥳 You now have a fully-functional Vendure server running locally.
Now you can explore Vendure by following our Try the API guide to learn how to interact with the server.
If you are new to GraphQL, you should also check out our Introducing GraphQL guide.
:::tip Open the Admin UI at http://localhost:3000/admin in your browser and log in with the superadmin credentials you specified, which default to:
If you encounter any issues during installation, you can get a more detailed output by setting the log level to verbose:
npx @vendure/create my-shop --log-level verbose
Once you have a Vendure server running, you can set up a storefront to interact with it!
We have a number of storefront starter kits available for you to use - head over to the Storefront Starters page to learn more.