Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yanxi123-com/links-products
用于快速生成以链接和商品为主要内容的网站
https://github.com/yanxi123-com/links-products
Last synced: 14 days ago
JSON representation
用于快速生成以链接和商品为主要内容的网站
- Host: GitHub
- URL: https://github.com/yanxi123-com/links-products
- Owner: yanxi123-com
- Created: 2013-11-09T04:34:33.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-02-18T15:08:18.000Z (almost 11 years ago)
- Last Synced: 2024-04-15T12:30:56.667Z (7 months ago)
- Language: JavaScript
- Homepage: http://www.qiri.com
- Size: 863 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Show links & products
-----------------本项目是用 Nodejs 和 MongoDB 搭建起来的、用于快速生成以链接和商品为主要内容的网站。
Demo: http://demo.qiri.com/
### 管理页面
http://hostname:port/manage### 创建索引
```js
db.pages.ensureIndex( { name: 1 }, {unique : true} );
db.categories.ensureIndex( { channel: 1, name : 1 }, {unique : true} );
db.categories.ensureIndex( { channel: 1, title : 1 }, {unique : true} );
```