🚀 Deploying a 3-tier Application with Docker and Nginx Proxy Manager 🌐

This page summarizes the projects mentioned and recommended in the original post on dev.to

Scout Monitoring - Free Django app performance insights with Scout Monitoring
Get Scout setup in minutes, and let us sweat the small stuff. A couple lines in settings.py is all you need to start monitoring your apps. Sign up for our free tier today.
www.scoutapm.com
featured
InfluxDB - Purpose built for real-time analytics at any scale.
InfluxDB Platform is powered by columnar analytics, optimized for cost-efficient storage, and built with open data standards.
www.influxdata.com
featured
  • git clone https://github.com/Hayzedak/hng2.git cd hng2

  • Scout Monitoring

    Free Django app performance insights with Scout Monitoring. Get Scout setup in minutes, and let us sweat the small stuff. A couple lines in settings.py is all you need to start monitoring your apps. Sign up for our free tier today.

    Scout Monitoring logo
  • Poetry

    Python packaging and dependency management made easy

    # Official Python runtime as a parent image FROM python:3.10 RUN set -xe # Install Poetry RUN curl -sSL https://install.python-poetry.org | python3 - --git https://github.com/python-poetry/poetry.git@master ENV PATH="/root/.local/bin:$PATH" # Confirm poetry version RUN poetry --version # Set up the working directory WORKDIR /app # Copy and install dependencies COPY . /app RUN poetry install EXPOSE 8000 # Start the application CMD ["bash", "-c", "poetry run bash ./prestart.sh && poetry run uvicorn app.main:app --reload --host 0.0.0.0"]

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Cursor Pagination Example

    2 projects | dev.to | 2 Sep 2024
  • Passo a Passo: Criando Sua Primeira Biblioteca em Python com Poetry (Parte I)

    2 projects | dev.to | 19 Jul 2024
  • Panic at the Tech Job Market

    2 projects | news.ycombinator.com | 17 Jul 2024
  • Python's virtual environments

    1 project | dev.to | 30 Jun 2024
  • Poetry: O Maestro dos Projetos Python 🎩✨

    1 project | dev.to | 24 Jun 2024