Skip to content

Instantly share code, notes, and snippets.

View c58's full-sized avatar
🏠
Working from home

Artem Artemyev c58

🏠
Working from home
  • Mozio
  • Yekaterinburg
View GitHub Profile
@ronnyroeller
ronnyroeller / signaling-server.ts
Last active April 1, 2024 14:13
Lambda function to provide webrtc signaling server
import { ApiGatewayManagementApi, DynamoDB } from 'aws-sdk';
import { scanItems } from './dynamodb';
const { AWS_REGION, TOPICS_TABLE } = process.env;
const dynamoDb = new DynamoDB({
apiVersion: '2012-08-10',
region: AWS_REGION,
});
@ruanbekker
ruanbekker / 0_drone_minio_gitea_local.md
Last active November 29, 2023 23:06
Drone, Minio, Gitea, Sqlite on Docker Compose
  • docker-compose.yml
version: '3.6'

services:
  minio:
    image: minio/minio:RELEASE.2020-01-03T19-12-21Z
    container_name: minio
    volumes: