Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
soulaimaneyahya committed May 24, 2024
0 parents commit 6a9b250
Show file tree
Hide file tree
Showing 24 changed files with 16,724 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
root=true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
trim_trailing_whitespace = false
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto eol=lf
Empty file added .github/.gitkeep
Empty file.
63 changes: 63 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: Deploy portal web page

on:
push:
branches: ['main']

workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: 'pages'
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: '16'

- name: Setup Pages
uses: actions/configure-pages@v3

- name: Install gridsome globally
run: npm install --global @gridsome/cli

- name: Install dependencies
run: npm install

- name: Build portal web page
run: |
gridsome build
touch dist/.nojekyll
touch dist/favicon.ico
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: dist

deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

needs: build
runs-on: ubuntu-latest

name: Deploy
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
*.log
.cache
.DS_Store
src/.temp
node_modules
dist
.env
.env.*
guide
2 changes: 2 additions & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
16
engine-strict=true
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
multichat.network
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 MultiChat

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Hey, we are MultiChat 👋

Multichat is a messaging app with focus on security & user experience

<img src="./src/assets/images/png/cover-multichat-chat-messages-multichat-network-instant-messaging-secure-messaging-encrypted chat.png" alt="multichat, chat, messages, multichat.network, instant messaging, secure messaging, encrypted chat, real-time messaging, group chat, private messaging, chat application, messaging app, chat platform, online chat, message encryption, message security, secure communication, multi-user chat, chat software, chat service, messaging network, chat network, encrypted communication, live chat, chatrooms, chat channels, chat privacy, chat app security, real-time updates, instant communication, secure messages, message delivery, chat server, messaging system, chat interface, chat API, secure chat app, chat application development, chat security measures, chat encryption, messaging protocols, chat clients, chat encryption algorithms, messaging security, secure message storage, chat app features, chat notifications, chat backend, chat frontend, chat architecture, chat scalability, chat database, message integrity, secure messaging network, chat system design, chat reliability, chat performance, chat app infrastructure, chat load balancing, chat rate limiting, chat traffic management, chat proxy server, chat firewall, chat data protection, chat privacy policies, chat app compliance, chat encryption keys, chat authentication, chat authorization, chat user management, chat user roles, chat permissions, chat logging, chat monitoring, chat analytics, chat reporting, chat error handling, chat debugging, chat troubleshooting, chat user experience, chat interface design, chat usability, chat customization, chat personalization, chat themes, chat emoticons, chat file sharing, chat media sharing, chat voice messages, chat video messages, chat support, chat customer service, chat integration, chat API endpoints, chat documentation, chat tutorials, chat developer tools, chat SDK, chat framework, chat libraries, chat plugins, chat extensions, chat widgets, chat microservices, chat containerization, chat deployment, chat hosting, chat cloud services, chat on-premise, chat hybrid solutions, chat scalability, chat latency, chat synchronization, chat real-time collaboration." />

## 🤝 Contributing
We welcome contributions from everyone. If you're interested in contributing, please check out our [contribution guidelines](https://github.com/MultiChatNetwork/.github/blob/main/CONTRIBUTING.md).

## 🛡️ Security Issues

If you discover a security vulnerability within MultiChat, we would appreciate your help in disclosing it to us responsibly, please check out our [security issues guidelines](https://github.com/MultiChatNetwork/.github/blob/main/SECURITY.md).

## 🛡️ License
All our projects are released under the [MIT License](https://github.com/MultiChatNetwork/.github/blob/main/LICENSE).

---

> Email: [email protected]
6 changes: 6 additions & 0 deletions gridsome.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
siteName: 'MultiChat',
siteUrl: 'https://multichat.network',
siteDescription: 'Multichat is a messaging app with focus on security & user experience',
plugins: []
}
9 changes: 9 additions & 0 deletions gridsome.server.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
module.exports = function (api) {
api.loadSource(() => {
//
})

api.createPages(() => {
//
})
}
15 changes: 15 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~/*": [
"src/*"
]
},
"jsx": "preserve"
},
"exclude": [
"node_modules",
"src/assets"
]
}
Loading

0 comments on commit 6a9b250

Please sign in to comment.