Skip to main content

max / makenotwork

6.5 KB · 121 lines History Blame Raw
1 -- Demo data for development.
2 -- Creates a sample creator with projects, items, and chapters.
3 -- Password for elena: demo123
4
5 -- ============================================================================
6 -- Demo User
7 -- ============================================================================
8
9 INSERT INTO users (
10 id, username, email, password_hash,
11 display_name, bio,
12 stripe_account_id, stripe_onboarding_complete,
13 stripe_payouts_enabled, stripe_charges_enabled,
14 can_create_projects
15 ) VALUES (
16 '11111111-1111-1111-1111-111111111111',
17 'elena',
18 'elena@example.com',
19 '$argon2id$v=19$m=19456,t=2,p=1$DKKe+bI4TwiyxkLgyCDZMA$oXVcdLHZIxv1hkFGK4JB5HNqoGURavSXhY9gjmvQeEM',
20 'Elena Vasquez',
21 'Writer and researcher exploring the intersection of creativity, technology, and human flourishing. Author of Slow Craft and the Patterns newsletter.',
22 'acct_demo_elena', true, true, true, true
23 ) ON CONFLICT (username) DO NOTHING;
24
25 -- ============================================================================
26 -- Demo Projects
27 -- ============================================================================
28
29 INSERT INTO projects (id, user_id, slug, title, description, project_type, is_public) VALUES
30 ('22222222-2222-2222-2222-222222222221', '11111111-1111-1111-1111-111111111111',
31 'patterns-newsletter', 'Patterns',
32 'Essays on productivity, creativity, and intentional living.', 'writing', true),
33 ('22222222-2222-2222-2222-222222222222', '11111111-1111-1111-1111-111111111111',
34 'patterns-podcast', 'Patterns Podcast',
35 'Conversations about creativity, rest, and meaningful work.', 'podcast', true),
36 ('22222222-2222-2222-2222-222222222223', '11111111-1111-1111-1111-111111111111',
37 'slow-craft', 'Slow Craft',
38 'A guide to sustainable creativity and meaningful work.', 'book', true)
39 ON CONFLICT (user_id, slug) DO NOTHING;
40
41 -- ============================================================================
42 -- Demo Items
43 -- ============================================================================
44
45 -- Newsletter items
46 INSERT INTO items (id, project_id, title, description, price_cents, item_type, is_public, sort_order) VALUES
47 ('33333333-3333-3333-3333-333333333331', '22222222-2222-2222-2222-222222222221',
48 'The Art of Doing Less',
49 'An essay exploring why our obsession with productivity often undermines the very outcomes we seek.',
50 500, 'text', true, 1),
51 ('33333333-3333-3333-3333-333333333332', '22222222-2222-2222-2222-222222222221',
52 'Finding Your Own Rhythm',
53 'Not everyone thrives on the same schedule. This essay examines how to discover your natural working patterns.',
54 500, 'text', true, 2),
55 ('33333333-3333-3333-3333-333333333333', '22222222-2222-2222-2222-222222222221',
56 'The Productivity Paradox',
57 'A free introduction to the themes explored throughout the Patterns newsletter.',
58 0, 'text', true, 3)
59 ON CONFLICT (id) DO NOTHING;
60
61 -- Podcast items
62 INSERT INTO items (id, project_id, title, description, price_cents, item_type, is_public, sort_order, duration_seconds) VALUES
63 ('33333333-3333-3333-3333-333333333341', '22222222-2222-2222-2222-222222222222',
64 'Episode 12: The Space Between Tasks',
65 'A conversation with cognitive scientist Dr. Maya Chen about the importance of transition time between activities.',
66 300, 'audio', true, 1, 2340),
67 ('33333333-3333-3333-3333-333333333342', '22222222-2222-2222-2222-222222222222',
68 'Episode 11: Creative Incubation',
69 'What happens in your brain when you step away from a problem? This episode dives into the science of incubation.',
70 300, 'audio', true, 2, 1980),
71 ('33333333-3333-3333-3333-333333333343', '22222222-2222-2222-2222-222222222222',
72 'Episode 10: The Neuroscience of Rest',
73 'A free episode featuring neuroscientist Dr. James Park discussing why rest is not the opposite of productivity.',
74 0, 'audio', true, 3, 1800)
75 ON CONFLICT (id) DO NOTHING;
76
77 -- Book items
78 INSERT INTO items (id, project_id, title, description, price_cents, item_type, is_public, sort_order) VALUES
79 ('33333333-3333-3333-3333-333333333351', '22222222-2222-2222-2222-222222222223',
80 'Slow Craft: Complete Book',
81 'The complete guide to building a sustainable creative practice.',
82 1500, 'text', true, 1),
83 ('33333333-3333-3333-3333-333333333352', '22222222-2222-2222-2222-222222222223',
84 'Chapter 1: Introduction (Preview)',
85 'A free preview of Slow Craft. This opening chapter introduces the core philosophy.',
86 0, 'text', true, 2)
87 ON CONFLICT (id) DO NOTHING;
88
89 -- ============================================================================
90 -- Demo Chapters (for podcast episodes)
91 -- ============================================================================
92
93 INSERT INTO chapters (item_id, title, start_seconds, sort_order) VALUES
94 ('33333333-3333-3333-3333-333333333341', 'Introduction', 0, 1),
95 ('33333333-3333-3333-3333-333333333341', 'The Patreon Years', 180, 2),
96 ('33333333-3333-3333-3333-333333333341', 'Platform Dependency Problems', 720, 3),
97 ('33333333-3333-3333-3333-333333333341', 'Making the Switch', 1200, 4),
98 ('33333333-3333-3333-3333-333333333341', 'Lessons Learned', 1800, 5),
99 ('33333333-3333-3333-3333-333333333341', 'Closing Thoughts', 2100, 6),
100 ('33333333-3333-3333-3333-333333333342', 'Introduction', 0, 1),
101 ('33333333-3333-3333-3333-333333333342', 'The Platform Fee Problem', 120, 2),
102 ('33333333-3333-3333-3333-333333333342', 'Alternative Business Models', 600, 3),
103 ('33333333-3333-3333-3333-333333333342', 'Is 0% Sustainable?', 1080, 4),
104 ('33333333-3333-3333-3333-333333333342', 'The Future of Creator Platforms', 1560, 5),
105 ('33333333-3333-3333-3333-333333333342', 'Wrap Up', 1860, 6);
106
107 -- ============================================================================
108 -- Demo Tag Assignments
109 -- ============================================================================
110
111 INSERT INTO item_tags (item_id, tag_id, is_primary) VALUES
112 ('33333333-3333-3333-3333-333333333331', (SELECT id FROM tags WHERE slug = 'essays'), true),
113 ('33333333-3333-3333-3333-333333333332', (SELECT id FROM tags WHERE slug = 'essays'), true),
114 ('33333333-3333-3333-3333-333333333333', (SELECT id FROM tags WHERE slug = 'essays'), true),
115 ('33333333-3333-3333-3333-333333333341', (SELECT id FROM tags WHERE slug = 'podcast'), true),
116 ('33333333-3333-3333-3333-333333333342', (SELECT id FROM tags WHERE slug = 'podcast'), true),
117 ('33333333-3333-3333-3333-333333333343', (SELECT id FROM tags WHERE slug = 'podcast'), true),
118 ('33333333-3333-3333-3333-333333333351', (SELECT id FROM tags WHERE slug = 'book'), true),
119 ('33333333-3333-3333-3333-333333333352', (SELECT id FROM tags WHERE slug = 'preview'), true)
120 ON CONFLICT DO NOTHING;
121