Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 836 Bytes

README.md

File metadata and controls

37 lines (27 loc) · 836 Bytes

Flaskify-App Application

FlaskifyAPI is a streamlined web application designed to help developers practice building and testing RESTful APIs using Flask, Postman, and related technologies.


Installation

Prerequisites

Ensure you have Python (3.7 or higher) and pip installed on your machine.

Steps

  1. Clone the repository:
    git clone https://github.com/RalitsaTerzieva/flaskify-api/tree/main
    cd flaskifyapi
    
  2. Create and activate a virtual environment:
    python -m venv venv
    source venv/bin/activate
    
  3. Install the dependencies:
    pip install -r requirements.txt
    
  4. Initialize the database:
    export FLASK_APP=app.py
    flask db init
    flask db migrate -m "Initial migration"
    flask db upgrade
    
  5. Run the application:
    flask run