An end-to-end encrypted messaging application built with Matrix and equipped with Voip, SMS login, etc.
Tip
We recommend using a version manager as versions change very quickly. You will likely need to switch between multiple Node.js versions based on the needs of different projects you're working on. NVM on windows on Windows and nvm on Linux/macOS are pretty good choices. Recommended nodejs version is Iron LTS (v20).
Execute the following commands to start a development server:
npm ci # Installs all dependencies
npm start # Serve a development versionTo build the app:
npm run build # Compiles the app into the dist/ directoryThis repository includes a Dockerfile, which builds the application from source and serves it with Nginx on port 80. To use this locally, you can build the container like so:
docker build -t sayance:latest .
You can then run the container you've built with a command similar to this:
docker run -p 8080:80 sayance:latest
This will forward your localhost port 8080 to the container's port 80. You can visit the app in your browser by navigating to http://localhost:8080.
-
You need to set up redirects to serve the assests. Example configurations; netlify, nginx, caddy.
- If you have trouble configuring redirects you can enable hash routing — the url in the browser will have a
/#/between the domain and open channel (ie.app.sayance.in/#/home/instead ofapp.sayance.in/home/) but you won't have to configure your webserver.
- If you have trouble configuring redirects you can enable hash routing — the url in the browser will have a
-
To deploy on subdirectory, you need to rebuild the app youself after updating the
basepath inbuild.config.ts.- For example, if you want to deploy on
https://sayance.in/app, then setbase: '/app'.
- For example, if you want to deploy on