Skip to content

QuantumStack/Descartes-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Descartes Server

Express RESTful backend for Descartes.

made with ❤️ in Pittsburgh, PA by QuantumStack

Configuration

Go to ./app/config.js and fill in the following.

const config = {

  // Application Settings
  app: {
    node_env: 'dev',
    port: 3000,
  },

  // Authentication Settings, keep care of this.
  auth: {
    secret: 'secret_goes_here',
    salt_rounds: 12,
  },

  // Database Settings
  db: {
    development: {
      host: 'localhost',
      port: 5432,
      name: 'descartes',
      user: 'adityapillai',
      pass: null,
    },
    production: {
      host: 'localhost',
      port: 5432,
      name: 'descartes',
      user: 'adityapillai',
      pass: null,
    },
  },

};

module.exports = config;

About

I think, therefore I serve(r).

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published