@duongital

Simple backend with PocketBase

Having a running server on AWS or DigitalOcean, SSH to the server and doing following:

http {
    server {
        ...
        server_name 13.250.41.93; // your IP server address
        location / {
                proxy_pass http://0.0.0.0:8090; // expose PocketBase port
        }
    }
}
[Unit]
Description=pocketbase

[Service]
ExecStart=/root/pocketbase/pocketbase serve

[Install]
WantedBy=multi-user.target
image

Congratulations! We now can start with Frontend project and not worrying much about: authentication, data persistent, realtime apiā€¦