Skip to content

A web app to help convert you system design to code using AI agents.

Notifications You must be signed in to change notification settings

shivankgoel/flowdev-flask

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flask API

A basic Flask REST API with a clean directory structure.

Setup

  1. Create a virtual environment:
python -m venv venv
  1. Activate the virtual environment:
  • On macOS/Linux:
source venv/bin/activate
  • On Windows:
.\venv\Scripts\activate
  1. Install dependencies:
pip install -r requirements.txt

Running the Application

  1. Start the Flask development server:
python app.py
  1. The API will be available at:
http://localhost:5000

API Endpoints

  • GET /: Welcome message
    {
      "message": "Welcome to Flask API",
      "status": "success"
    }

Project Structure

.
├── app/
│   ├── __init__.py
│   ├── routes/
│   │   └── __init__.py
│   └── static/
├── app.py
├── requirements.txt
└── README.md

About

A web app to help convert you system design to code using AI agents.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages