Skip to content

Latest commit

 

History

History
60 lines (43 loc) · 859 Bytes

File metadata and controls

60 lines (43 loc) · 859 Bytes

Setup Guide

Prerequisites

  • Node.js 18+ or Python 3.9+
  • Git
  • Docker (optional)

Local Development

Clone Repository

git clone https://github.com/prince-life/full-pc-automation-for-codex.git
cd full-pc-automation-for-codex

Install Dependencies

npm install
# or
pip install -r requirements.txt

Environment Configuration

  1. Copy .env.example to .env
  2. Fill in your configuration values:
    CODEX_API_KEY=your_key_here
    CODEX_API_URL=https://api.codex.example.com
    

Run Tests

npm test
# or
pytest

Start Development Server

npm run dev
# or
python -m app.main

Docker Setup

docker build -t full-pc-automation .
docker run -d --name automation-service full-pc-automation

Troubleshooting

See troubleshooting guide