All Projects → wireapp → Wire Webapp

wireapp / Wire Webapp

Licence: gpl-3.0
👽 Wire for web

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects

Projects that are alternatives of or similar to Wire Webapp

molch
An implementation of the axolotl ratchet based on libsodium.
Stars: ✭ 24 (-97.56%)
Mutual labels:  messenger, libsodium
SmartsApp
💬📱 An End to End Encrypted Cross Platform messenger app.
Stars: ✭ 69 (-92.97%)
Mutual labels:  webapp, end-to-end-encryption
Vesta
Vesta is a simple decentralized p2p chat group using ruby.
Stars: ✭ 44 (-95.52%)
Mutual labels:  messenger, end-to-end-encryption
Home Panel
A web frontend for controlling the home.
Stars: ✭ 185 (-81.16%)
Mutual labels:  hacktoberfest, webapp
Messagekit
A community-driven replacement for JSQMessagesViewController
Stars: ✭ 5,036 (+412.83%)
Mutual labels:  hacktoberfest, messenger
Miscord
Facebook Messenger to Discord bridge
Stars: ✭ 225 (-77.09%)
Mutual labels:  hacktoberfest, messenger
onepile
Playground for the future of private notes and document management
Stars: ✭ 41 (-95.82%)
Mutual labels:  webapp, end-to-end-encryption
Ongaku
Anime Radio
Stars: ✭ 86 (-91.24%)
Mutual labels:  hacktoberfest, webapp
Udash Core
Scala framework for building beautiful and maintainable web applications.
Stars: ✭ 405 (-58.76%)
Mutual labels:  hacktoberfest, webapp
Nusmods
🏫 Official course planning platform for National University of Singapore.
Stars: ✭ 379 (-61.41%)
Mutual labels:  hacktoberfest, webapp
Laravel Messenger
Simple user messaging package for Laravel
Stars: ✭ 2,140 (+117.92%)
Mutual labels:  hacktoberfest, messenger
Piral
Framework for next generation web apps using microfrontends. 🚀
Stars: ✭ 711 (-27.6%)
Mutual labels:  hacktoberfest, webapp
Erxes
Free and open fair-code licensed all-in-one growth marketing & management software
Stars: ✭ 1,988 (+102.44%)
Mutual labels:  hacktoberfest, messenger
Ferdi
🧔🏽 Ferdi helps you organize how you use your favourite apps by combining them into one application
Stars: ✭ 4,089 (+316.4%)
Mutual labels:  hacktoberfest, messenger
Tutorialdb
A search 🔎 engine for programming/dev tutorials, See it in action 👉
Stars: ✭ 93 (-90.53%)
Mutual labels:  hacktoberfest, webapp
go-peer
Library for create secure and anonymity decentralized networks.
Stars: ✭ 74 (-92.46%)
Mutual labels:  messenger, end-to-end-encryption
Wise Old Man
The Open Source Old School Runescape progress tracker.
Stars: ✭ 68 (-93.08%)
Mutual labels:  hacktoberfest, webapp
Marketplace Sample Apps
Repository of sample codes demonstrating usage of SDK and APIs on the Freshworks developer platform. 🔗 https://developers.freshworks.com
Stars: ✭ 70 (-92.87%)
Mutual labels:  hacktoberfest, webapp
photochat
Works cool: I use a secure app to chat. Next level: I encrypt my chats with a private key. Intergalactic level: I encrypt my chats with a one-time token and then make them deceptively public ;)
Stars: ✭ 38 (-96.13%)
Mutual labels:  messenger, webapp
Briefing
Secure direct video group chat
Stars: ✭ 710 (-27.7%)
Mutual labels:  end-to-end-encryption, webapp

Wire™

We are hiring

This repository is part of the source code of Wire. You can find more information at wire.com or by contacting [email protected].

You can find the published source code at github.com/wireapp/wire.

For licensing information, see the attached LICENSE file and the list of third-party licenses at wire.com/legal/licenses/.

If you compile the open source software that we make available from time to time to develop your own mobile, desktop or web application, and cause that application to connect to our servers for any purposes, we refer to that resulting application as an “Open Source App”. All Open Source Apps are subject to, and may only be used and/or commercialized in accordance with, the Terms of Use applicable to the Wire Application, which can be found at https://wire.com/legal/#terms. Additionally, if you choose to build an Open Source App, certain restrictions apply, as follows:

a. You agree not to change the way the Open Source App connects and interacts with our servers; b. You agree not to weaken any of the security features of the Open Source App; c. You agree not to use our servers to store data for purposes other than the intended and original functionality of the Open Source App; d. You acknowledge that you are solely responsible for any and all updates to your Open Source App.

For clarity, if you compile the open source software that we make available from time to time to develop your own mobile, desktop or web application, and do not cause that application to connect to our servers for any purposes, then that application will not be deemed an Open Source App and the foregoing will not apply to that application.

No license is granted to the Wire trademark and its associated logos, all of which will continue to be owned exclusively by Wire Swiss GmbH. Any use of the Wire trademark and/or its associated logos is expressly prohibited without the express prior written consent of Wire Swiss GmbH.

How to build the open source client

Prerequisites:

  1. Install Node.js
  2. Install Yarn

1. Fetching dependencies and configurations

  1. Run yarn
  • This will install all dependencies and fetch a configuration for the application.
  1. Rename .env.localhost to .env in order to configure the application. This configuration can override/extend the configuration from the previous step.

2. Build & run

Production

  1. Run yarn build:prod
  2. Run cd server && yarn start:prod

Development

  1. Run yarn start and Wire's web app will be available at: https://localhost:8081/auth/
  2. Use a browser with disabled web security (−−disable−web−security in Chrome) to circumvent CORS issues when connecting to our backend from localhost

Bypass Chrome's security restrictions for local development:

  1. Add the following entries to your hosts file: 127.0.0.1 local.wire.com (to connect with production backend) and 127.0.0.1 local.zinfra.io (to connect with staging backend)
  2. Restart your Chrome browser with flags: --disable-web-security --ignore-certificate-errors --user-data-dir=...
  3. Run yarn start

Host file location:

  • On macOS / Linux the hosts file can be found at: /etc/hosts
  • On Windows 10 the hosts file can be found at: %WINDIR%\system32\drivers\etc\hosts

Optional: If your browser does not trust the certificate from "local.wire.com" or "local.zinfra.io":

  1. Download mkcert
  2. Set CAROOT env variable to ./server/certificate
  3. Run mkcert -install

Testing

To launch the full test suite (types check + linting + server tests + app tests), simply run:

yarn test

Alternatively, you can test specific parts of the app:

yarn test:(server|types|app)

Deployment

General workflow

Stage Branch Action Environment Backend
1 (Feature development) edge commit wire-webapp-edge Staging
2 (Nightly test automation) dev commit or squash merge from edge wire-webapp-dev Staging
3 (Internal release) dev tag (format: YYYY-MM-DD-staging.X) wire-webapp-staging Production
4 (RC testing) master merge (don't squash) from "dev"; afterwards generate release notes wire-webapp-master Staging
5 (Production release) master tag (format: YYYY-MM-DD-production.X) wire-webapp-prod Production

Staging Bumps for internal releases

Actions

  1. Get commit ID which has been approved by QA team
  2. run yarn release:staging <commitId> (if the commit ID is omitted, the latest commit from dev will be used).
  3. Example:
    yarn release:staging 90fda951916f0d60a5bffce69a7267830e313391
    
  4. Enter "yes"

RC testing

Before RC testing we create a merge commit (don't squash!) from "dev" to "master" branch, so that our QA team can run tests on the latest version of our app.

Production Release

Similar to "Staging Bumps" with the exception that you need to run yarn release:production <commitId> (if the commit ID is omitted, the latest commit from master will be used).

Example:

yarn release:production 90fda951916f0d60a5bffce69a7267830e313391

Release notes

Release notes will be automatically generated by the CI setup when releasing a production tag on GitHub. If you want to generate release notes before releasing a production version, you can run yarn changelog:dev, which will log all changes between the latest production release and the current development branch.

Manual Deployments

Based on the git branch, builds get deployed automatically by Travis CI. In case Travis CI is not working, a manual deployment can be triggered using yarn deploy.

A manual deployment requires the local setup of the Elastic Beanstalk Command Line Interface (EB CLI). Manual deployments are also based on branch defaults which are configured here.

Status

Build Status styled with prettier

Translations

All Wire translations are crowdsourced via Crowdin.

Add new strings

Info:

  • To download translations we use Crowdin API v1, and you need to setup your username and api_key (Account API key).
  • To upload translations we use Crowdin CLI v3, and you will need to setup project_identifier and api_token (Personal Access Token).

Setup:

Create a keys/crowdin.yaml in this repository and add the following entries:

api_key: your-account-api-key
api_token: your-personal-access-token
project_identifier: wire-webapp
username: your-username

Usage:

  1. Add string variable to "src/script/strings.ts" (source for the React part of our app) and text to "i18n/en-US.json" (source for the Knockout part of our app)
  2. Create a PR and merge it after approval. When the PR gets merged, our CI will take care of uploading the english texts to Crowdin.

If our CI pipeline is broken, you still have the option to upload new strings manually. For this case do the following:

  1. Install Crowdin CLI v3
  2. Verify you have a keys/crowdin.yaml in place
  3. Run yarn translate:upload

Once translations are uploaded on Crowdin, our (and external) translators can translate the new strings on Crowdin. There is a script that will run to create PRs with translation updates. As an alternative, translations can be downloaded the following way:

  1. Verify your string shows up on Crowdin project: wire-webapp
  2. Add translation on Crowdin
  3. Approve translation on Crowdin
  4. Run yarn translate:download

Contributing

Contributions are welcome! Feel free to check our issues page.

The following commits will help you getting started quickly with our code base:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].