Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 436 Bytes

README.md

File metadata and controls

40 lines (27 loc) · 436 Bytes

README

Dependence

DB

mongodb

start

cargo run

Client

pdca_web

Base framework

actix-web

nginx config example

location /api/ {
    proxy_pass http://127.0.0.1:8088; // this server
}
location / {
    proxy_pass http://127.0.0.1:3000; // the nuxt client
}

mongodb example

mongo
use pdca_v1
db["pdca_daily"].find()