Home
noisrucer
Cancel

Inject environment variables into a docker container with AWS Systems Manager Parameter Store

1. Introduction In the previous articles, we created a docker image of a simple FastAPI project and deployed it to AWS ECS Fargate. Most of the times, we deal with environment variables such as d...

Deploy our FastAPI server to AWS ECS Fargate

Previously, we uploaded our simple FastAPI server container image to ECR. In this article, we’ll deploy our server on ECS Fargate so that you can access from anywhere around the world! 1. Create ...

Create a MySQL RDS instance and access it from terminal

1. Introduction In this article, we’ll go over how to create a remote MySQL database using AWS RDS which stands for Amazon Relational Database Service. RDS is a distributed relational database ru...

Dockerize FastAPI Project into a container image and run it locally

Introduction What is container? What is an image? Demo FastAPI Project Write Dockerfile Build the Docker image Execute a Docker container 1. Introduction To deploy a FastAPI pro...

Build an amazing TUI app with Textual

Introduction Install Textual Our first app Custom Widgets Conclusion 1. Introduction You’ve probably heard of GUI. However, the term TUI (Terminal User Interface) might sound not that...

Build an amazing CLI app with Typer

Introduction Installation Our first CLI app CLI Argument and Option Command Build To-do list Bonus - separate commands into different folders Publish your app 1. Introduction ...

Distribute your own PyPI library using Typer

Introduction Install Poetry Create a new project Install packages Build a Typer app README.md Fill out your package info Install our package to test it locally Distribute our pac...

Implement mutually exclusive command arguments in Typer using Closure

Introduction Scenario Closure Implement mutually exclusive options 1. Introduction When I was developing Girok, I ran into a challenging task to implement mutually exclusive options. ...

Uniformize increasing primary key ids under different views by caching

Introduction Challenge Encountered Solution - locally cache latest query result 1. Introduction Girok offers a set of operations to query your tasks effectively. You can use girok show...

Modeling Hierarchical Directory Tree with FastAPI and SQLAlchemy (Visualize with Typer & Rich library)

Introduction Show Category Add Category Remove Category Move Category Modeling self-referential relationship Visualize tree with Rich Introduction I’ve been working on a project...

Trending Tags