https://github.com/xanke/disney-sns
基于NodeJS的小型社交系统
https://github.com/xanke/disney-sns
express nodejs
Last synced: about 2 months ago
JSON representation
基于NodeJS的小型社交系统
- Host: GitHub
- URL: https://github.com/xanke/disney-sns
- Owner: xanke
- License: apache-2.0
- Created: 2018-01-14T13:53:07.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-23T19:40:09.000Z (over 3 years ago)
- Last Synced: 2025-08-17T10:36:52.590Z (10 months ago)
- Topics: express, nodejs
- Language: JavaScript
- Homepage: http://api.17disney.com
- Size: 374 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Disney-SNS
Disney-SNS
**_config_**
```json
config = {
appid: "",
secret: "",
mongodb: "mongodb://",
port: '',
appid: '',
secret: '',
qmapKey: '',
qiniu_ak: '',
qiniu_sk: '',
qiniu_bucket: ''
}
```
#### 已支持
微信小程序登录 session_key
发送动态
地理位置更新
#### 等待开发
手机号码绑定/注册
个人空间
消息系统
小组系统
### 持续集成
```
docker stop disney-sns \
&& docker rm disney-sns \
&& cd /data/jenkins/workspace/disney-sns \
&& docker build -t disney-sns . \
&& docker run -d --name disney-sns \
-e TZ='Asia/Shanghai' \
-p 17201:17201 \
--mount type=bind,source=/data/config/disney-sns,target=/app/config \
disney-sns node index -f all
```