Skip to content

Commit 0979d1b

Browse files
authored
Merge pull request #9 from BearingMe/master
update on docs
2 parents 0d0ce04 + 2698e9f commit 0979d1b

File tree

6 files changed

+50
-16
lines changed

6 files changed

+50
-16
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
node_modules/
2-
/session.json
1+
alice/node_modules/
2+
alice/system/auth/session.json

CONTRIBUTE.md

Whitespace-only changes.

CONTRIBUTING.md renamed to CONTRIBUTE_pt.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# Guia Para Contribuidores do Alice Bot
1+
# Guia Para Contribuidores do Projeto
22

33
## Index
44

55
- [Como contribuir?](#como-contribuir)
66
- [1º Passo](#1º-passo) - Fork
77
- [2º Passo](#2º-passo) - Clonagem
8-
- [3º Passo](#3º-passo) - Add linke para repositório oficial
8+
- [3º Passo](#3º-passo) - Add link para repositório oficial
99
- [4º Passo](#4º-passo) - Crie uma branch para contribuir
1010
- [5º Passo](#5º-passo) - Adicione e commite a contribuição
1111
- [6º Passo](#6º-passo) - Envie a branch com a contribuição para o fork
@@ -37,15 +37,15 @@ Você será redirecionado para sua conta assim que o processo for concluído.
3737
Após ter o repositório em sua conta, faça o **clone** em seu ambiente local:
3838

3939
```bash
40-
$ git clone https://github.com/<NOME_DA_SUA_CONTA>/WhatsAppBot_ProjectAlice.git
40+
$ git clone https://github.com/<NOME_DA_SUA_CONTA>/whatsappbot-project_alice.git
4141
```
4242

4343
### 3º Passo
4444

45-
Com o clone em seu ambiente, linke o repositório local ao remoto da organização [Coding in Community](https://github.com/Coding-in-community/WhatsAppBot_ProjectAlice):
45+
Com o clone em seu ambiente, linke o repositório local ao remoto da organização [Coding in Community](https://github.com/Coding-in-community/whatsappbot-project_alice):
4646

4747
```bash
48-
$ git remote add upstream https://github.com/Coding-in-community/WhatsAppBot_ProjectAlice.git
48+
$ git remote add upstream https://github.com/Coding-in-community/whatsappbot-project_alice.git
4949
```
5050

5151
Isso servirá para sincronizar atualizações feitas no repositório oficial para seu ambiente local.
@@ -61,10 +61,10 @@ $ git remote --v
6161
Se tudo ocorreu bem, deverá ter uma saída semelhante a essa:
6262

6363
```bash
64-
origin https://github.com/<NOME_DA_SUA_CONTA>/WhatsAppBot_ProjectAlice.git (fetch)
65-
origin https://github.com/<NOME_DA_SUA_CONTA>/WhatsAppBot_ProjectAlice.git (push)
66-
upstream https://github.com/Coding-in-community/WhatsAppBot_ProjectAlice.git (fetch)
67-
upstream https://github.com/Coding-in-community/WhatsAppBot_ProjectAlice.git (push)
64+
origin https://github.com/<NOME_DA_SUA_CONTA>/whatsappbot-project_alice.git (fetch)
65+
origin https://github.com/<NOME_DA_SUA_CONTA>/whatsappbot-project_alice.git (push)
66+
upstream https://github.com/Coding-in-community/whatsappbot-project_alice.git (fetch)
67+
upstream https://github.com/Coding-in-community/whatsappbot-project_alice.git (push)
6868
```
6969

7070
### 4º Passo

README-pt.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<h1 align="center">
2+
<br>
3+
<a href="https://github.com/Coding-in-community/whatsappbot-project_alice">
4+
<img src="https://www.dropbox.com/s/9h3gdgq2ud2q114/circle-cropped.png?raw=1" width="150" height=150">
5+
</a>
6+
<br>
7+
Projeto Alice
8+
<br>
9+
</h1>
10+
11+
<h3 align=center>Um sistema multiuso baseado no código do bot <a href="https://github.com/fdciabdul/InsideHeartz-WhatsApp-Bot"> Inside Heartz </a></h3>
12+
13+
### Instalação
14+
15+
Clone o projeto
16+
17+
```bash
18+
> git clone https://github.com/Coding-in-community/whatsappbot-project_alice.git
19+
> cd whatsappbot-project_alice
20+
```
21+
22+
Instale as dependências:
23+
24+
```bash
25+
> npm install
26+
```
27+
28+
### Uso
29+
30+
```bash
31+
> node index.js
32+
```
33+
34+
Uma vez que o bot esteja rodando você pode escanear o qrcode

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<br>
99
</h1>
1010

11-
<h3 align=center>A multipurpose whatsapp bot based on <a href="https://github.com/fdciabdul/InsideHeartz-WhatsApp-Bot"> Inside Heartz </a> project</h3>
11+
<h3 align=center>A multipurpose system based on <a href="https://github.com/fdciabdul/InsideHeartz-WhatsApp-Bot"> Inside Heartz </a> whatsapp bot</h3>
1212

1313
### Install
1414

alice/main.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ const Alice = require('./system')
22
const { component } = require('./system/utils')
33

44
let alice = new Alice([
5-
component('add', require('./scripts/add')),
6-
component('demote', require('./scripts/demote')),
75
component('github', require('./scripts/github')),
8-
component('remove', require('./scripts/remove')),
9-
component('link', require('./scripts/link')),
106
component('_example', require('./scripts/_example')),
7+
// component('add', require('./scripts/add')),
8+
// component('demote', require('./scripts/demote')),
9+
// component('remove', require('./scripts/remove')),
10+
// component('link', require('./scripts/link')),
1111
])
1212

1313
alice.init()

0 commit comments

Comments
 (0)