A web-based frontend for Ulterius Server. Written in Typescript using React, Alt and other assorted bits.
- Clone repo
npm install
- Rename the
config.ts.example
file in the src directory toconfig.ts
. The options in it will affect your build, namelyautoConnect
which should be either an object with ahost
andport
property that the client will automatically connect to, or justfalse
; as well ascachePassword
which if enabled, will automatically save your password and login on reconnect. These options are mainly present in order to speed development and should both be turned off for production builds. - To launch an auto-reloading dev server, use
npm run dev
, or to generate a production build,npm run build
and start up an http server in thepublic
directory, or copy it wherever and do whatever you want with it. It should be perfectly static.