Skip to content

Youngestdev/fastapi-mongo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

7ce51e3 · May 17, 2024
May 19, 2021
May 20, 2023
Oct 3, 2023
May 20, 2023
Oct 3, 2023
Oct 3, 2023
Oct 3, 2023
May 20, 2023
May 13, 2023
May 20, 2023
Jun 15, 2021
Sep 4, 2020
Sep 9, 2020
Oct 3, 2023
May 19, 2021
Oct 2, 2023
Oct 3, 2023
May 20, 2023
Oct 2, 2023
May 20, 2023
Apr 16, 2024

Repository files navigation

FastAPI and MongoDB Boilerplate

A simple starter for building RESTful APIs with FastAPI and MongoDB.

image

Features

  • Python FastAPI backend.
  • MongoDB database.
  • Authentication
  • Deployment

Using the applicaiton

To use the application, follow the outlined steps:

  1. Clone this repository and create a virtual environment in it:
$ python3 -m venv venv
  1. Install the modules listed in the requirements.txt file:
(venv)$ pip3 install -r requirements.txt
  1. You also need to start your mongodb instance either locally or on Docker as well as create a .env.dev file. See the .env.sample for configurations.

    Example for running locally MongoDB at port 27017:

    cp .env.sample .env.dev
  2. Start the application:

python3 main.py

The starter listens on port 8000 on address 0.0.0.0.

FastAPI-MongoDB starter

Testing

To run the tests, run the following command:

(venv)$ pytest

You can also write your own tests in the tests directory.
The test follow by the official support FastAPI testing guide, pytest, anyio for async testing application.

Deployment

This application can be deployed on any PaaS such as Heroku or Okteto and any other cloud service provider.

Contributing ?

Fork the repo, make changes and send a PR. We'll review it together!

License

This project is licensed under the terms of MIT license.