examples/Flask-Example
2024-06-29 17:48:07 +03:00
..
.gitignore Created Flask Example application for dokploy and added README.MD 2024-06-29 17:44:50 +03:00
main.py Created Flask Example application for dokploy and added README.MD 2024-06-29 17:44:50 +03:00
README.MD Created Flask Example application for dokploy and added README.MD 2024-06-29 17:44:50 +03:00
requirements.txt Added: requirements.txt 2024-06-29 17:48:07 +03:00

Flask Application Examples

This repository contains a Flask application along with necessary setup instructions.

Installation

Follow these steps to set up and install the Flask application:

Prerequisites

  • Python 3.x installed on your system. You can download Python from python.org.

Setup

  1. Make dir and go to directory:

    mkdir <directory>
    cd <directory>
    
  2. Create and activate a virtual environment:

    python3 -m venv venv
    

    Activate the virtual environment: On windows:

    venv\Scripts\activate
    

    On macOS/Linux:

    source venv/bin/activate
    
  3. Install dependencies:

     pip install -r requirements.txt
    
  4. Running the Application:

     python main.py