rest api POS ( point of sales ) built with hapi.js, kasirAja aplikasi POS gratis dan opensource
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
Aji Kamaludin fb0ba20a27
fix readme
3 years ago
documents fix readme 3 years ago
migrations sales impemented 3 years ago
src fix typo 3 years ago
.env.example init project 3 years ago
.eslintrc.json init project 3 years ago
.gitignore init project 3 years ago
README.md fix readme 3 years ago
package-lock.json users implemented 3 years ago
package.json init project 3 years ago

README.md

kasirAja API

contoh rest api POS ( point of sales ) built with hapi.js

frontend

NextJS (Web App): Coming Soon

React Native (Mobile App): Coming Soon

table structure

!(table structure)[https://github.com/ajikamaludin/hapi-kasiraja-api/raw/dev/documents/tables.png]

feature

  • PostgreSQL database
  • bisa lebih dari 1 toko multi store
  • pengelolaan produk, stok dan unit
  • pembelian
  • penjualan
  • diskon penjualan

documention API

Postman (import file) : Link

start

  • install

      `npm install`
    
  • config .env file for database

      `cp .env.example .env`
    
  • migrate database

      `npm run migrate up`
    
  • run the app

      `npm run start`
    
  • test

      `curl -i -H 'Accept: application/json' http://localhost:5000/`
    

response

HTTP/1.1 200 OK
Date: Thu, 24 Feb 2011 12:36:30 GMT
Status: 200 OK
Connection: close
Content-Type: application/json
Content-Length: 2

{
    "status": Ok!
}