gfs天气服务器
后端,用于下载,存储和提供气象数据。
安装
git clone ...
配置
将config.sample.json复制到config.json并根据您的环境调整设置。
{
"server" : {
// Configuration settings affecting the restify instance
"port" : 8080
} ,
// Toggle between mongoose for a mongodb database or sequelize for sql databases
"db" : "mongoose" ,
"mongoose" : {
"connString" : "mongodb://localhost/gfs"
} ,
// Sequelize settings. model
1