Skip to content

Instantly share code, notes, and snippets.

View jordiup's full-sized avatar
🙌
Building The Future Of Digital Health

Jordi Hermoso jordiup

🙌
Building The Future Of Digital Health
View GitHub Profile
@jordiup
jordiup / docker-compose.yml
Created September 25, 2022 06:36
postgres/pg-web docker compose file
version: '3'
services:
postgres:
image: postgres:12
ports:
- '5432:5432'
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
import twilio from 'twilio';
var accountSid = process.env.TWILIO_ACCOUNT_SID; // Your Account SID from www.twilio.com/console
var authToken = process.env.TWILIO_AUTH_TOKEN; // Your Auth Token from www.twilio.com/console
export const twilioClient = twilio(accountSid, authToken, {
accountSid,
});
let aiden = '+61488700798';