FlaskifyAPI is a streamlined web application designed to help developers practice building and testing RESTful APIs using Flask, Postman, and related technologies.
Ensure you have Python (3.7 or higher) and pip
installed on your machine.
- Clone the repository:
git clone https://github.com/RalitsaTerzieva/flaskify-api/tree/main cd flaskifyapi
- Create and activate a virtual environment:
python -m venv venv source venv/bin/activate
- Install the dependencies:
pip install -r requirements.txt
- Initialize the database:
export FLASK_APP=app.py flask db init flask db migrate -m "Initial migration" flask db upgrade
- Run the application:
flask run