diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1edc09d6..ba03fbca 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -36,4 +36,9 @@ It is not always possible to phrase every change in such a manner, but it is des Also, we use [ESLint](https://eslint.org/) for clean and stylistically consistent code syntax, so make sure your pull request follow it. -**For any query or design discussion, join our [Matrix room](https://matrix.to/#/#cinny:matrix.org).** \ No newline at end of file +**For any query or design discussion, join our [Matrix room](https://matrix.to/#/#cinny:matrix.org).** + +## Helpful links +- [BEM methodology](http://getbem.com/introduction/) +- [Atomic design](https://bradfrost.com/blog/post/atomic-web-design/) +- [Matrix JavaScript SDK documentation](https://matrix-org.github.io/matrix-js-sdk/19.2.0/index.html) \ No newline at end of file diff --git a/LICENSE b/LICENSE index ff85e6a6..1f7a2841 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2021 Ajay Bura (ajbura) +Copyright (c) 2021-present Ajay Bura (ajbura) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 101de850..d6675bd1 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,5 @@ -
- - Cinny -
-+# Cinny +
-**Cinny** is a Matrix client focusing primarily on simple, elegant and secure interface. The main goal is to have a client that is easy on end user -and feels a modern chat application. - -- [Contributing](./CONTRIBUTING.md) +A Matrix client focusing primarily on simple, elegant and secure interface. The main goal is to have an instant messaging application that is easy on people and has a modern touch. - [Roadmap](https://github.com/ajbura/cinny/projects/11) +- [Contributing](./CONTRIBUTING.md) -## Building and Running +## Getting started +Web app is available at https://app.cinny.in and gets updated on each new release. The `dev` branch is continuously deployed at https://dev.cinny.in but keep in mind that it could have things broken. -### Running pre-compiled +You can also download our desktop app from [cinny-desktop repository](https://github.com/cinnyapp/cinny-desktop). -A tarball of pre-compiled version of the app is provided with each [release](https://github.com/ajbura/cinny/releases). -You can serve the application with a webserver of your choosing by simply copying `dist/` directory to the webroot. +To host Cinny on your own, download tarball of the app from [GitHub release](https://github.com/cinnyapp/cinny/releases/latest). +You can serve the application with a webserver of your choice by simply copying `dist/` directory to the webroot. +To set default Homeserver on login and register page, place a customized [`config.json`](config.json) in webroot of your choice. + +Alternatively you can just pull the [DockerHub image](https://hub.docker.com/r/ajbura/cinny) by: +``` +docker pull ajbura/cinny +``` +or [ghcr image](https://github.com/cinnyapp/cinny/pkgs/container/cinny) by: +``` +docker pull ghcr.io/cinnyapp/cinny:latest +```