Skip to content
This repository has been archived by the owner on Nov 23, 2022. It is now read-only.
/ WebClient Public archive

Interact with FerrisChat right from your browser.

License

Notifications You must be signed in to change notification settings

FerrisChat/WebClient

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FerrisChat's Web Client

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.

Setup Instructions

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

Building for Production

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.