Skip to content

Files

Latest commit

3d9896e · Dec 6, 2024

History

History
23 lines (19 loc) · 365 Bytes

README.md

File metadata and controls

23 lines (19 loc) · 365 Bytes

GraphDeck

Development

Serve data files from other directory:

$ env GRAPHDECK_ASSETS=/path/to/folder-containing-a-data-folder npm run dev

Deployment

$ npm run build

Nginx Config Example

server {
    location /graphdeck {
        root /srv/static/;
        try_files $uri $uri/ $uri.html /graphdeck/index.html;
    }
}