Add a [FEEDS](https://docs.scrapy.org/en/latest/topics/feed-exports.html#std-setting-FEEDS)
setting to your project or spider, if not added yet.

The value of `FEEDS` must be a JSON object (`{}`).

If you have `FEEDS` already defined with key-value pairs, you can keep
those if you want — `FEEDS` supports exporting data to multiple file
storage service locations.

To add `FEEDS` to a project, define it in your [Scrapy Cloud project
settings](https://support.zyte.com/support/solutions/articles/22000200670-customizing-scrapy-settings-in-scrapy-cloud)
or add it to your `settings.py` file:

settings.py
```python
FEEDS = {}
```

To add `FEEDS` to a spider, define it in your Scrapy Cloud
spider-specific settings (open a spider in Scrapy Cloud and select the
**Settings** tab) or add it to your spider code with the [update_settings](https://docs.scrapy.org/en/latest/topics/spiders.html#scrapy.Spider.update_settings)
method or the [custom_settings](https://docs.scrapy.org/en/latest/topics/spiders.html#scrapy.Spider.custom_settings) class variable:

spiders/myspider.py
```python
class MySpider:
    custom_settings = {
        "FEEDS": {},
    }
```
