Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
SinaSeylani committed Jun 19, 2024
1 parent cb9b879 commit 62a9c78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integrationtestapp/proxy-server/proxy_server.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ app.use((req, res, next) => {
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));

const mailosaurAPIKey = 'YOUR_API_KEY_HERE';
const mailosaurAPIKey = process.env.MAILOSAUR_API_KEY || 'default_key';

// Proxy for Mailosaur API
app.get('/api/messages', (req, res) => {
Expand Down

0 comments on commit 62a9c78

Please sign in to comment.