---
title: Get started with EAS Metadata
sidebar_title: Get started
description: Learn how to automate and maintain your app store presence from the command line with EAS Metadata.
---
> **important** **EAS Metadata** is in preview and subject to breaking changes.
EAS Metadata enables you to automate and maintain your app store presence from the command line. It uses a [**store.config.json**](./config.md#static-store-config) file containing all required app information instead of going through multiple different forms. It also tries to find common pitfalls that could cause app rejections with built-in validation.
## Prerequisites
EAS Metadata currently **only supports the Apple App Store**.
> Using VS Code? Install the [Expo Tools extension](https://github.com/expo/vscode-expo#readme) for auto-complete, suggestions, and warnings in your **store.config.json** files.
## Create the store config
Let's start by creating our **store.config.json** file in the root directory of your project. This file holds all the information you want to upload to the app stores.
If you already have an app in the stores, you can pull the information into a store config by running:
If you don't have an app in the stores yet, EAS Metadata can't generate the store config for you. Instead, create a new store config file.
```json store.config.json
{
"configVersion": 0,
"apple": {
"info": {
"en-US": {
"title": "Awesome App",
"subtitle": "Your self-made awesome app",
"description": "The most awesome app you have ever seen",
"keywords": ["awesome", "app"],
"marketingUrl": "https://example.com/en/promo",
"supportUrl": "https://example.com/en/support",
"privacyPolicyUrl": "https://example.com/en/privacy"
}
}
}
}
```
> By default, EAS Metadata uses the **store.config.json** file at the root of your project. You can change the name and location of this file by setting the **eas.json** [`metadataPath`](../../submit/eas-json.md#metadatapath) property.
## Update the store config
Now it's time to edit the **store.config.json** file and customize it to your app needs. You can find all available options in the [store config schema](/eas/metadata/schema/).
## Upload a new app version
Before pushing the **store.config.json** to the app stores, you must upload a new binary of your app. For more information, see [uploading new binaries to stores](/submit/introduction/).
After the binary is submitted and processed, you can push the store config to the app stores.
## Upload the store config
When you are satisfied with the **store.config.json** settings, you can push it to the app stores by running the following command:
If EAS Metadata runs into any issues with your store config, it will warn you when running this command. When there are no errors, or you confirm to push it with possible issues, it will try to upload as much as possible.
When the store config partially fails, you can change the store config and retry. `eas metadata:push` can be used to retry pushing the missing items.
## Next steps