fluxdrive

0.0.11 • Public • Published

FLUXDrive

FLUXDrive Component Driven Management System Web development by studio Pillar.

Minimum Requirements

  • NodeJS
  • ExpressJS

Installation

  1. Run npm install fluxdrive —-save to install fluxdrive node module

  2. Start 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);
  3. Start your server

  4. Open http://0.0.0.0:3000/admin

  5. Create a new user

Production Settings

  • MongoDB: ENV_DB_URL = mongodb://<dbuser>:<dbpassword>@<host>:<port>/<database_name>

Readme

Keywords

none

Package Sidebar

Install

npm i fluxdrive

Weekly Downloads

1

Version

0.0.11

License

none

Last publish

Collaborators

  • henriquebf