fluxdrive
v0.0.11
Published
FLUXDrive CDMS
Readme
FLUXDrive
FLUXDrive Component Driven Management System Web development by studio Pillar.
Minimum Requirements
- NodeJS
- ExpressJS
Installation
Run
npm install fluxdrive —-saveto install fluxdrive node moduleStart the CMS in your server file as the example below
var express = require('express'); var fluxdrive = require('fluxdrive'); // Start ExpressJS var app = express(); // Start the CMS fluxdrive.start(app); // Call your application routing or handle your requests app.use((req, res) => { res.send(`Hello World!`); }); // Start Server app.listen(3000);Start your server
Create a new user
Production Settings
- MongoDB:
ENV_DB_URL=mongodb://<dbuser>:<dbpassword>@<host>:<port>/<database_name>
