Skip to content
View marianobrc's full-sized avatar
  • worldwide
Block or Report

Block or report marianobrc

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. scalable-django-rest scalable-django-rest Public

    A sample project for a scalable REST API using Django & Django REST Framework, ready to be deployed in AWS with Docker and CDK

    Python 7 1

  2. fastapi-kafka fastapi-kafka Public

    A sample project for event-driven microservices built with FastAPI and Kafka pub/sub

    HCL 2 2

  3. scalable-django-apps scalable-django-apps Public

    An example of scalable django apps in AWS with Docker and CDK

    Python 34 14

  4. scalable-django-chat scalable-django-chat Public

    A sample project for scalable django apps using channels (websockets) in AWS with Docker and CDK

    Python

  5. A CDK stack sample for load balance... A CDK stack sample for load balanced ECS/Fargate service
    1
    from aws_cdk import (
    2
        Stack,
    3
        aws_ec2 as ec2,
    4
        aws_sqs as sqs,
    5
        aws_ecs as ecs,
  6. A multistage Dockerfile to build a D... A multistage Dockerfile to build a Django app for development and production
    1
    # Base off the official python image
    2
    # Define a common stage for dev and prod images called base
    3
    FROM python:3.10 as base
    4
    # Set environment variables
    5
    ENV PYTHONDONTWRITEBYTECODE 1