Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dylanon/mailchimp-subscribe


https://github.com/dylanon/mailchimp-subscribe

Last synced: 26 days ago
JSON representation

Awesome Lists containing this project

README

        

# Mailchimp Subscribe Microservice

## Configuring a new Vercel project

1. Update secret names in now.json

```
"API_KEY": "@yourprojectprefix-chimp-apikey",
"AUDIENCE_ID": "@yourprojectprefix-chimp-audienceid",
"BASE_URL": "@yourprojectprefix-chimp-baseurl"
```

2. Create secrets with the `now` CLI:

```
npx now secret add yourprojectprefix-chimp-apikey your-secret-here
```

3. Deploy

Preview deployment:

```
npm run deploy
```

Production deployment:

```
npm run deploy:prod
```