Skip to main content

max / makenotwork

2.2 KB · 62 lines History Blame Raw
1 # Data Export
2
3 Export all of your data at any time. No lock-in, no friction.
4
5 ## What You Can Export
6
7 | Export | Format | Contents |
8 |--------|--------|----------|
9 | Projects & Items | JSON | All projects, items, tags, chapters, versions, license keys, promo codes, and blog posts |
10 | Sales | CSV | Date, item, amount, status, and buyer email for every sale |
11 | Purchases | CSV | Date, item, amount, and status for everything you have bought |
12 | Followers & Members | CSV | Usernames, display names, types, status, and membership dates |
13 | Content Files | ZIP | All uploaded files (audio, video, covers, versions, dynamic clips) with a manifest |
14
15 ## How to Export
16
17 1. Go to Settings > Data
18 2. Choose the export type
19 3. Click "Export"
20
21 JSON and CSV exports download immediately. Content file exports are assembled into a ZIP archive and provided as a temporary download link (valid for one hour).
22
23 ## Content File Export
24
25 You get exactly the same quality fans receive. If any server-side processing occurred (e.g., format conversion), the export contains the processed version. Keep your own lossless backups if original quality matters.
26
27 The export includes a `README.txt` manifest listing every file and its original context.
28
29 Limits:
30
31 - Maximum 500 files per export
32 - Maximum 2 GB total size
33 - Maximum 500 MB per file
34
35 If you have more content than these limits allow, export in batches by project.
36
37 Git repositories are not included in the content file export. Clone them separately:
38
39 ```
40 git clone https://makenot.work/git/<username>/<repo>.git
41 ```
42
43 ## Export Format Details
44
45 ### Projects JSON
46
47 A single JSON file containing a complete snapshot: projects with metadata, items with all fields (pricing, visibility, tags, chapters, versions), blog posts with full Markdown, license keys, and promo codes. Parseable with any JSON tool.
48
49 ### CSV Exports
50
51 CSV files use standard comma-separated format with a header row.
52
53 ## Platform Portability
54
55 If you leave, you take everything: content files, metadata, sales history, and audience data.
56
57 ## See Also
58
59 - [Content & Items]./02-content.md: What gets exported
60 - [Selling & Audience]./03-selling.md: Sales and revenue data
61 - [Migration]./migration.md: Moving to Makenot.work from another platform
62