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.

54 lines
982 B
Markdown

3 years ago
## kasirAja API
contoh rest api POS ( point of sales ) built with hapi.js
3 years ago
3 years ago
### frontend
`NextJS (Web App)`: [Coming Soon](#)
3 years ago
3 years ago
`React Native (Mobile App): ` [Coming Soon](#)
### table structure
3 years ago
!(table structure)[https://github.com/ajikamaludin/hapi-kasiraja-api/raw/dev/documents/tables.png]
3 years ago
### 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
3 years ago
- install
3 years ago
`npm install`
3 years ago
- config .env file for database
3 years ago
3 years ago
`cp .env.example .env`
3 years ago
- migrate database
3 years ago
3 years ago
`npm run migrate up`
3 years ago
- run the app
3 years ago
3 years ago
`npm run start`
3 years ago
- test
3 years ago
3 years ago
`curl -i -H 'Accept: application/json' http://localhost:5000/`
3 years ago
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!
}