1
0
mirror of https://github.com/franjsco/trackmyd-bot synced 2025-06-05 22:19:29 +02:00

Edit username

This commit is contained in:
Francesco Esposito
2020-03-01 23:30:43 +01:00
parent d4fc3aaa1e
commit edff30e6c7
3 changed files with 9 additions and 9 deletions

View File

@@ -8,9 +8,9 @@ This bot is written in Node.js
## Architecture ## Architecture
**trackmyd-bot** uses the [**trackmyd-api**](https://github.com/frsposito/trackmyd-api) project APIs to get device locations. **trackmyd-bot** uses the [**trackmyd-api**](https://github.com/franjsco/trackmyd-api) project APIs to get device locations.
To configure the server, refer to the [**trackmyd-api**](https://github.com/frsposito/trackmyd-api) repository. To configure the server, refer to the [**trackmyd-api**](https://github.com/franjsco/trackmyd-api) repository.
In order to use trackmyd-bot, in addiction to the configuration of the trackmyd-api, its also necessary to configure [**GPSLogger**](https://github.com/mendhak/gpslogger), an open-source application that allows sending location through HTTP calls. In order to use trackmyd-bot, in addiction to the configuration of the trackmyd-api, its also necessary to configure [**GPSLogger**](https://github.com/mendhak/gpslogger), an open-source application that allows sending location through HTTP calls.
@@ -62,4 +62,4 @@ Before requesting the position to the bot you need to add a new device and confi
GPLv3 GPLv3
--- ---
Made with ❤️ by Francesco Esposito ([@frsposito](https://github.com/frsposito)) Made with ❤️ by Francesco Esposito ([@franjsco](https://github.com/franjsco))

View File

@@ -19,12 +19,12 @@
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/frsposito/trackmyd-bot.git" "url": "git+https://github.com/franjsco/trackmyd-bot.git"
}, },
"author": "frsposito", "author": "franjsco",
"license": "GPL-3.0-or-later", "license": "GPL-3.0-or-later",
"bugs": { "bugs": {
"url": "https://github.com/frsposito/trackmyd-bot/issues" "url": "https://github.com/franjsco/trackmyd-bot/issues"
}, },
"homepage": "https://github.com/frsposito/trackmyd-bot#readme" "homepage": "https://github.com/franjsco/trackmyd-bot#readme"
} }

View File

@@ -8,7 +8,7 @@ function welcome() {
A bot to track your devices with GPS. A bot to track your devices with GPS.
Please, read the README on Please, read the README on
[trackmyd-bot](https://github.com/frsposito/trackmyd-bot) repository [trackmyd-bot](https://github.com/franjsco/trackmyd-bot) repository
to configure the bot. to configure the bot.
Made with ❤️ by Francesco Esposito`; Made with ❤️ by Francesco Esposito`;
@@ -28,7 +28,7 @@ function help() {
function unauthorizedUser() { function unauthorizedUser() {
const msg = `Unauthorized user. 🤖 \n const msg = `Unauthorized user. 🤖 \n
Clone the repository https://github.com/frsposito/trackmyd-bot Clone the repository https://github.com/franjsco/trackmyd-bot
and run the bot on your local network. 😎`; and run the bot on your local network. 😎`;
return msg; return msg;
} }