Skip to main content

max / makenotwork

2.2 KB · 61 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
34 If you have more content than these limits allow, export in batches by project.
35
36 Git repositories are not included in the content file export. Clone them separately:
37
38 ```
39 git clone https://makenot.work/source/<username>/<repo>.git
40 ```
41
42 ## Export Format Details
43
44 ### Projects JSON
45
46 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.
47
48 ### CSV Exports
49
50 CSV files use standard comma-separated format with a header row.
51
52 ## Platform Portability
53
54 If you leave, you take everything: content files, metadata, sales history, and audience data.
55
56 ## See Also
57
58 - [Content & Items]./02-content.md: What gets exported
59 - [Selling & Audience]./03-selling.md: Sales and revenue data
60 - [Migration]./migration.md: Moving to Makenot.work from another platform
61