Skip to main content
Makenot
.
work
Discover
Use Cases
Docs
Fan+
Login
Join
max
/
makenotwork
lane-a-pipeline
main
tag: launch-2026-06-01
Files
Commits
Issues
makenotwork
/
server
/
seed_demo.sh
214 B · 13 lines
History
Blame
Raw
1
#
!/bin/bash
2
#
Seed demo data into the database
3
#
Usage: ./seed_demo.sh
4
5
cd
"
$
(
dirname
"
$
0
"
)
"
6
7
#
Load .env file
8
if
[
-
f
.env
]
;
then
9
export
$(grep
-v
'
^#
'
.env
|
xargs
)
10
fi
11
12
psql
"
$
DATABASE_URL
"
-
f
seed_demo.sql
13