Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/yanxi123-com/links-products

用于快速生成以链接和商品为主要内容的网站
https://github.com/yanxi123-com/links-products

Last synced: 14 days ago
JSON representation

用于快速生成以链接和商品为主要内容的网站

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} );
```