mirror of
https://github.com/encounter/zed.git
synced 2026-03-30 11:44:33 -07:00
ac4c6c60f1
* Allow creating channels when seeding * Allow configuring a custom `SEED_PATH` * Seed the database when creating/migrating it so you don't need a separate step for this. Release Notes: - N/A
13 lines
256 B
Bash
Executable File
13 lines
256 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
|
|
echo "Linux dependencies..."
|
|
script/linux
|
|
else
|
|
echo "installing foreman..."
|
|
which foreman > /dev/null || brew install foreman
|
|
fi
|
|
|
|
echo "creating database..."
|
|
script/sqlx database create
|