https://github.com/unbug/ddms
Data Drive Management System
https://github.com/unbug/ddms
mongoose nodejs
Last synced: 4 months ago
JSON representation
Data Drive Management System
- Host: GitHub
- URL: https://github.com/unbug/ddms
- Owner: unbug
- Created: 2015-06-04T13:55:17.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-12-08T12:17:34.000Z (over 7 years ago)
- Last Synced: 2025-03-06T14:55:24.447Z (4 months ago)
- Topics: mongoose, nodejs
- Language: JavaScript
- Homepage:
- Size: 4.82 MB
- Stars: 182
- Watchers: 27
- Forks: 42
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://nodei.co/npm/ddms/)
Data Drive Management System
=================
DDMS is a simple express app. It provides an easy way to create complex forms, so you can do logical in your web pages.### Install dependencies
Make sure you have [mongodb](https://www.mongodb.org/),and with `Node.js` installed, run these commands from the root of the project.
```shell
npm install -g bower
npm install
cd public
bower install
```### Start the app
```shell
npm start
```
Go to `http://localhost:3003` and login with `name : [email protected]` and `password : adminadmin`;Access APIs with `http://localhost:3004`### Stop the app
```shell
sudo lsof -P | grep ':3003' | awk '{print $2}' | xargs kill -9
sudo lsof -P | grep ':3004' | awk '{print $2}' | xargs kill -9
```### Environment variables
For upload images,DDMS only save image's link,it does not provide upload image to it's own server,use other server to upload images.
```js
//upload: the server api to upload image
process.env.DDMS_IMAGE_UPLOAD
//server: the server api to access image
process.env.DDMS_IMAGE_SERVER
```### Screenshots




