Skip to content
This repository has been archived by the owner on Sep 25, 2019. It is now read-only.

Commit

Permalink
Merge pull request #120 from lgmagalhaes88/dev
Browse files Browse the repository at this point in the history
v.0.1.0
  • Loading branch information
lucasgmagalhaes authored Jan 24, 2019
2 parents 54d9c76 + 1057fe4 commit 6508050
Show file tree
Hide file tree
Showing 21 changed files with 309 additions and 170 deletions.
3 changes: 3 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
#Firebase
API_KEY=
AUTH_DOMAIN=,
DATABASE_URL=,
PROJECT_ID=,
STORAGE_BUCKET=,
MENSSAGING_SENDER_ID=,

#Discord
DISCORD_TOKEN=
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
{
"typescript.tsdk": "node_modules\\typescript\\lib"
"typescript.tsdk": "node_modules\\typescript\\lib",
"typescript.preferences.importModuleSpecifier": "non-relative",
"typescript.preferences.quoteStyle": "auto",
"merge-conflict.autoNavigateNextConflict.enabled": true
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

All notable changes to this project will be documented in this file.

## 0.1.0 - 2019-01-24

### Added

- hello command to do #85
- hi command #110
- help command to do #7
- inventory command to do #56

### Bugs Fixed

- Bot sends hero to exploration even when he is already explorating #119

## 0.0.3 - 2019-01-23

### Bugs Fixed
Expand Down
8 changes: 7 additions & 1 deletion connection.ts → config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@

// Set the varibles for development environment
require("dotenv").config();

export const firebaseConnection = {
apiKey: process.env.API_KEY,
authDomain: process.env.AUTH_DOMAIN,
Expand All @@ -7,6 +11,8 @@ export const firebaseConnection = {
messagingSenderId: process.env.MENSSAGING_SENDER_ID
};

export const SuperSecretDiscordToken = {
export const superSecretDiscordToken = {
token: process.env.DISCORD_TOKEN
};

export const projectVersion = require('./package.json').version;
Binary file removed docs/Monsters to kill per level.xlsx
Binary file not shown.
Loading

0 comments on commit 6508050

Please sign in to comment.