Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ralitsaterzieva/flaskify-api
Flask based application
https://github.com/ralitsaterzieva/flaskify-api
flask flask-restful flaskrestapi python rest-api
Last synced: about 1 month ago
JSON representation
Flask based application
- Host: GitHub
- URL: https://github.com/ralitsaterzieva/flaskify-api
- Owner: RalitsaTerzieva
- Created: 2024-12-01T15:19:19.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-12-01T16:26:54.000Z (about 1 month ago)
- Last Synced: 2024-12-01T16:29:55.001Z (about 1 month ago)
- Topics: flask, flask-restful, flaskrestapi, python, rest-api
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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:
```bash
git clone https://github.com/RalitsaTerzieva/flaskify-api/tree/main
cd flaskifyapi2. Create and activate a virtual environment:
```bash
python -m venv venv
source venv/bin/activate
4. Install the dependencies:
```bash
pip install -r requirements.txt
6. Initialize the database:
```bash
export FLASK_APP=app.py
flask db init
flask db migrate -m "Initial migration"
flask db upgrade
8. Run the application:
```bash
flask run