Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dylanon/mailchimp-subscribe
https://github.com/dylanon/mailchimp-subscribe
Last synced: 26 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dylanon/mailchimp-subscribe
- Owner: dylanon
- Created: 2019-07-10T02:47:42.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T04:30:09.000Z (about 2 years ago)
- Last Synced: 2024-10-27T23:16:09.296Z (2 months ago)
- Language: TypeScript
- Size: 995 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
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
```