This repository serves as a starting point for developing data connectors for Alan using Python and FastAPI.
- Python >= 3.10 including pip and venv
-
Clone the repository:
git clone https://github.com/yourusername/alan-data-connector-template.git <your-connector-name> cd <your-connector-name>
-
Create a virtual environment:
python3 -m venv .venv
-
Activate the virtual environment:
-
On macOS/Linux:
source .venv/bin/activate
-
On Windows:
.\.venv\Scripts\activate
-
-
Install the dependencies:
pip install -r requirements.txt
To run the FastAPI application, use the following command:
python main.py