Endpoints for Blog Post API
# Setup Env
Follow the format specified in the .env.template file and after rename .env
# Setup postgres
Create a PostgreSQL database called "BlogPostAPI"
git clone https://github.com/Daquiver1/blogpost_api.git
- Install python dependencies
pip install -r requirements.txt
cd blogpost_api
alembic upgrade head
uvicorn src.api.main:app --reload
- The app is now running on http://127.0.0.1:8000