Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 717 Bytes

File metadata and controls

31 lines (21 loc) · 717 Bytes

python-pop

Project to discover AI functionality and go deeper into python advanced subjects

Installation

Using Docker

This is the recommended way to run the project.

  1. Make sure you have Docker and Docker Compose installed.

  2. Run the following command to build and start the services:

    docker-compose up -d --build

Local Development

  1. Make sure you have Python 3.8+ and uv installed.

  2. Install the project dependencies:

    uv pip install --system .
  3. Set up a MongoDB instance and configure the connection URI in a .env file (see src/config/settings.py).

  4. Run the application:

    uvicorn src.main:app --reload