Skip to content
View blackbaba's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report blackbaba

Report abuse

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

Report abuse

Pinned Loading

  1. Flask-Tailwind-Starter Flask-Tailwind-Starter Public template

    Flask + TailwindCSS Starter Template with PostCSS+PurgeCSS

    HTML 51 12

  2. Setting up an Ubuntu Focal server wi... Setting up an Ubuntu Focal server with Python, Postgres, Nginx, Gunicorn and commonly used utilities
    1
    # Server Setup - Ubuntu 20.04 LTS Focal
    2
    
                  
    3
    ## Update system and setup Python
    4
    
                  
    5
    ```python
  3. Flask-Tailwind-SAAS-Starter-Template Flask-Tailwind-SAAS-Starter-Template Public

    SAAS Starter Template using Flask and TailwindCSS

    Python 2

  4. Nginx Cheatsheet Nginx Cheatsheet
    1
    # General
    2
    sudo apt-get install nginx-full
    3
    sudo service nginx start
    4
    sudo nginx -s reload
    5
    
                  
  5. Production Deployment and Server Mai... Production Deployment and Server Maintenance
    1
    # Production Deployment Checklist
    2
    - CI/CD Git Pipeline
    3
      - Flask Assets Clean and Rebuild
    4
      - Precommit Hooks (Black, Flake8)
    5
      - Unit Test
  6. Redis Cheatsheet Redis Cheatsheet
    1
    # Install Redis
    2
    sudo apt update
    3
    sudo apt install redis-server
    4
    pip install redis
    5
    # import redis