diff --git a/.gitignore b/.gitignore index 6fb2a76..5ab1e1a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -node_modules/ -/session.json \ No newline at end of file +alice/node_modules/ +alice/system/auth/session.json \ No newline at end of file diff --git a/CONTRIBUTE.md b/CONTRIBUTE.md new file mode 100644 index 0000000..e69de29 diff --git a/CONTRIBUTING.md b/CONTRIBUTE_pt.md similarity index 87% rename from CONTRIBUTING.md rename to CONTRIBUTE_pt.md index c4efca0..f45af7e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTE_pt.md @@ -1,11 +1,11 @@ -# Guia Para Contribuidores do Alice Bot +# Guia Para Contribuidores do Projeto ## Index - [Como contribuir?](#como-contribuir) - [1º Passo](#1º-passo) - Fork - [2º Passo](#2º-passo) - Clonagem - - [3º Passo](#3º-passo) - Add linke para repositório oficial + - [3º Passo](#3º-passo) - Add link para repositório oficial - [4º Passo](#4º-passo) - Crie uma branch para contribuir - [5º Passo](#5º-passo) - Adicione e commite a contribuição - [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. Após ter o repositório em sua conta, faça o **clone** em seu ambiente local: ```bash -$ git clone https://github.com//WhatsAppBot_ProjectAlice.git +$ git clone https://github.com//whatsappbot-project_alice.git ``` ### 3º Passo -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): +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): ```bash -$ git remote add upstream https://github.com/Coding-in-community/WhatsAppBot_ProjectAlice.git +$ git remote add upstream https://github.com/Coding-in-community/whatsappbot-project_alice.git ``` Isso servirá para sincronizar atualizações feitas no repositório oficial para seu ambiente local. @@ -61,10 +61,10 @@ $ git remote --v Se tudo ocorreu bem, deverá ter uma saída semelhante a essa: ```bash -origin https://github.com//WhatsAppBot_ProjectAlice.git (fetch) -origin https://github.com//WhatsAppBot_ProjectAlice.git (push) -upstream https://github.com/Coding-in-community/WhatsAppBot_ProjectAlice.git (fetch) -upstream https://github.com/Coding-in-community/WhatsAppBot_ProjectAlice.git (push) +origin https://github.com//whatsappbot-project_alice.git (fetch) +origin https://github.com//whatsappbot-project_alice.git (push) +upstream https://github.com/Coding-in-community/whatsappbot-project_alice.git (fetch) +upstream https://github.com/Coding-in-community/whatsappbot-project_alice.git (push) ``` ### 4º Passo diff --git a/README-pt.md b/README-pt.md new file mode 100644 index 0000000..da141eb --- /dev/null +++ b/README-pt.md @@ -0,0 +1,34 @@ +

+
+ + + +
+ Projeto Alice +
+

+ +

Um sistema multiuso baseado no código do bot Inside Heartz

+ +### Instalação + +Clone o projeto + +```bash +> git clone https://github.com/Coding-in-community/whatsappbot-project_alice.git +> cd whatsappbot-project_alice +``` + +Instale as dependências: + +```bash +> npm install +``` + +### Uso + +```bash +> node index.js +``` + +Uma vez que o bot esteja rodando você pode escanear o qrcode diff --git a/README.md b/README.md index 224fd93..7d73049 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@
-

A multipurpose whatsapp bot based on Inside Heartz project

+

A multipurpose system based on Inside Heartz whatsapp bot

### Install diff --git a/alice/main.js b/alice/main.js index e1d8367..268be89 100644 --- a/alice/main.js +++ b/alice/main.js @@ -2,12 +2,12 @@ const Alice = require('./system') const { component } = require('./system/utils') let alice = new Alice([ - component('add', require('./scripts/add')), - component('demote', require('./scripts/demote')), component('github', require('./scripts/github')), - component('remove', require('./scripts/remove')), - component('link', require('./scripts/link')), component('_example', require('./scripts/_example')), + // component('add', require('./scripts/add')), + // component('demote', require('./scripts/demote')), + // component('remove', require('./scripts/remove')), + // component('link', require('./scripts/link')), ]) alice.init() \ No newline at end of file