This commit is contained in:
Theenoro
2022-05-20 07:55:08 +02:00
parent 270c31ad07
commit d521488087
12 changed files with 1621 additions and 0 deletions

15
config/config.example.js Normal file
View File

@@ -0,0 +1,15 @@
/**
* EXAMPLE
*/
export class Config{
// https://openweathermap.org/
static WEATHER_API = {
API_KEY: "",
CITY: "",
READING: 60000 // 10 Min
};
static WEB_SERVER = {
PORT: 8989,
WSPORT: 8990
};
}