Coder Social home page Coder Social logo

djs's Introduction

Digital Jabar Service API tes

Getting started

  1. Clone the repository to editor
git clone https://github.com/muntundoang/djs.git
  1. Change directory to server
cd djs/server
  1. Install all dependencies
npm install
  1. Configure postgres SQL in config folder inside server then change all username and password in developement and test object that connect to local postgres database
{
  "development": {
    "username": "postgres", <-- change this
    "password": "postgres", <-- change this
    "database": "djsDB",
    "host": "127.0.0.1",
    "dialect": "postgres"
  },
  "test": {
    "username": "postgres", <-- change this
    "password": "postgres", <-- change this
    "database": "djsDB_test",
    "host": "127.0.0.1",
    "dialect": "postgres"
  },
  "production": {
    "use_env_variable":"DATABASE_URL",
    "ssl": true,
    "dialect": "postgres",
    "protocol": "postgres",
    "dialectOptions": {
      "ssl": {
        "require": true,
        "rejectUnauthorized": false
      }
    }
  }
}
  1. Make sure create .env file and the content can be seen in .env example
touch .env

content of .env file (for example)

# PORT
PORT=3001
  1. Make sure the .sequelizerc env in developement environment
module.exports = {
    env: 'developement'
}
  1. Execute create database, migrate and seeding to SQL
npm run create
npm run migrate
npm run seed
  1. To run server
npm run start
  1. To know all endpoints read endpoints-doc.md

Testing

  1. For testing change .sequelizerc enviroment to test
module.exports = {
    env: 'test'
}
  1. Execute create database, migrate and seeding (in Test Environment so the main database remain unchange) to SQL
npm run create
npm run migrate
npm run seed
  1. run test command in terminal
npm run test
  1. To change back to developement environment change .sequelizerc enviroment to developement
module.exports = {
    env: 'developement'
}

djs's People

Contributors

muntundoang avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.