IP Subnet Calculator - Backend
Setup
- Create a virtual environment:
python -m venv venv
- Activate the virtual environment:
- Windows:
venv\Scripts\activate - Linux/Mac:
source venv/bin/activate
- Install dependencies:
pip install -r requirements.txt
Run the server
uvicorn main:app --reload --host 0.0.0.0 --port 8000
API will be available at http://localhost:8000 API documentation at http://localhost:8000/docs