mirror of
https://github.com/apache/superset.git
synced 2026-05-07 17:04:58 +00:00
- Switch to universal:2 image which includes vim, curl, jq, tmux, etc. - Remove redundant features (already in universal image) - Simplify setup script - only install Superset-specific libs - Keeps SSH feature for remote access
21 lines
567 B
Bash
Executable File
21 lines
567 B
Bash
Executable File
#!/bin/bash
|
|
# Setup script for Superset Codespaces development environment
|
|
|
|
set -e
|
|
|
|
echo "🔧 Setting up Superset development environment..."
|
|
|
|
# The universal image has most tools, just need Superset-specific libs
|
|
echo "📦 Installing Superset-specific dependencies..."
|
|
sudo apt-get update
|
|
sudo apt-get install -y \
|
|
libsasl2-dev \
|
|
libldap2-dev \
|
|
libpq-dev
|
|
|
|
# Make the start script executable
|
|
chmod +x .devcontainer/start-superset.sh
|
|
|
|
echo "✅ Development environment setup complete!"
|
|
echo "🚀 Run '.devcontainer/start-superset.sh' to start Superset"
|