This page confirms that your DocuAI backend is fully operational.
Running on port 5000
PostgreSQL connected
JWT system ready
Replit Object Storage
All endpoints operational
Vite plugin conflict
The React frontend won't mount due to the @replit/vite-plugin-runtime-error-modal
plugin interfering with React's mounting process. This is a development environment issue only.
The backend is fully functional and can be used via direct API calls. The React frontend issue is a Vite configuration problem that doesn't affect core functionality.
You can test all backend functionality using curl commands:
# Test authentication curl -X GET http://localhost:5000/api/auth/user # Test transactions API curl -X GET http://localhost:5000/api/transactions # Test storage status curl -X GET http://localhost:5000/api/storage/status # Test file upload (with API key) curl -X POST http://localhost:5000/api/transactions/1/upload \ -H "X-API-Key: docuai_demo_key_123" \ -F "document=@test.pdf"