The official web client for FerrisChat. Try it out!
⚠️ WARNING: This client is not a native client - it is a client specifically made to be run in a browser.
The official native client application repository can be found here. Native client builds can be found here.
Clone this repository and cd
into the src
directory:
/> git clone https://github.com/FerrisChat/WebClient
/> cd WebClient/src
Next, install all dependencies using npm
:
/WebClient/src> npm i --include=dev
And finally, run npm run dev
to start the development server:
/WebClient/src> npm run dev
Run npm run build
to build the website for production:
/WebClient/src> npm run build
You can then start the production server by running npm run serve
:
/WebClient/src> npm run serve
You can also set the dist
directory as a webroot. Note that this directory will be nested in the src
directory.