Install SyteRay on Your Own Servers
SyteRay is an AI layer for on-premise Infor SyteLine (CloudSuite Industrial). One command installs it next to your ERP, self-indexes your database, and gives your team evidence-first answers, dashboards, and governed editing over live SyteLine data. Nothing leaves your data center.
Prerequisites
SyteRay deploys alongside your existing SyteLine environment. Before running the installer, make sure you have:
- On-premise Infor SyteLine / CloudSuite Industrial 10 (CSI 10) on Microsoft SQL Server.
- A Windows or Linux host (server or VM) on the same network as your SyteLine database.
- A SQL Server account for SyteRay: read access to the application database, plus permission to create the namespaced SyteRay_ semantic views.
- An evaluation or commercial license key from Netray (see below).
- Optional: a GPU for local LLM inference. SyteRay also runs with CPU-served local models or an LLM endpoint you approve; air-gapped setups use local models only.
One-Command Install
Clone the installer from github.com/ajaypramod/syteray-installer onto the host, then run the script for your platform. The installer prompts for your SQL Server connection details and license key, and handles everything else.
git clone https://github.com/ajaypramod/syteray-installer.git
cd syteray-installer
.\install-syteray.ps1git clone https://github.com/ajaypramod/syteray-installer.git
cd syteray-installer
./install-syteray.shFor air-gapped environments, the installer supports an offline bundle: download it on a connected machine, transfer it inside, and run the same script with no internet access required.
What the Installer Does: Self-Indexing Your SyteLine Database
SyteRay is only as good as its understanding of your SyteLine database, so the installer spends most of its time building that understanding. On the reference deployment this produced a schema pack covering 1,970 tables and a catalog of 8,636 stored procedures. Four stages run automatically:
1. Schema discovery
Reads your application database's tables, columns, keys, and relationships, including site-specific customizations and user-defined fields, and compiles them into a schema pack that grounds every SQL query SyteRay generates.
2. Stored-procedure catalog with effect analysis
Crawls your stored procedures and classifies each one's side effects: what it reads, what it writes, and what it calls, including transitive effects through nested calls. This is what lets SyteRay treat read-only procedures differently from ones that change data.
3. Semantic views
Creates a namespaced set of SyteRay_ views that encode correct SyteLine business definitions, such as what counts as an open order, a booking, or a shipment, so every answer and dashboard uses one consistent source of truth.
4. Seeded workspace
Stands up the SyteRay chat workspace with curated dashboards, skills, and starter prompts wired to your data, so the first login lands on a working system rather than an empty screen.
The installer never modifies your application tables. Everything it creates is prefixed SyteRay_, documented, and cleanly removable.
Evaluation & Commercial Licensing
SyteRay is commercial, source-available software owned by Thaare Software Solutions Private Limited (Netray). The installer requires a license key: evaluation keys are issued after a short conversation about your environment, and commercial licenses are scoped per SyteLine site. There is no anonymous free tier, because connecting an AI system to a production ERP deserves a named, accountable engagement on both sides.
Read the full SyteRay license terms.
Installation FAQ
Does SyteRay send my SyteLine data to the cloud?
No. SyteRay installs on your own Windows or Linux server inside your network and reads your SyteLine SQL Server database directly. It is designed for on-premise and air-gapped deployments: inference can run on local models, and no ERP data needs to leave your data center.
Which SyteLine versions does SyteRay support?
SyteRay is built for on-premise Infor SyteLine / CloudSuite Industrial 10 (CSI 10) running on Microsoft SQL Server. If you run a different version, contact us and we will confirm compatibility for your environment.
What does the installer actually do to my database?
The installer reads, it does not modify your application tables. It discovers your schema, catalogs your stored procedures and analyzes their effects, and creates a small set of clearly-namespaced SyteRay_ semantic views. Everything it creates is prefixed, documented, and removable.
Is SyteRay free to install?
SyteRay is commercial, source-available software. Evaluation requires authorization from Netray: contact ajay@netray.co or book a demo and we will issue an evaluation license for your environment.
What hardware does SyteRay need?
A modest server or VM alongside your SyteLine environment is enough to start; the reference deployment runs on a small cloud instance. Local LLM inference benefits from a GPU, but SyteRay can also use a CPU-served local model or an API endpoint you approve.