Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
16 lines
286 B
Bash
Executable File
16 lines
286 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -xe
|
|
|
|
echo "Running on $(node -v)"
|
|
|
|
# Cleanup
|
|
rm -rf node_modules build-tmp-* lib/binding
|
|
|
|
# Install build dependencies
|
|
if [ -f /etc/alpine-release ]; then
|
|
apk add --no-cache --virtual .build-deps make gcc g++ python3
|
|
fi
|
|
|
|
su node -c "npm test; npx node-pre-gyp package"
|