#!/bin/bash

# Setup script for the project
echo "Setting up the project..."

# Install dependencies
npm install

# Build the project
npm run build

# Run tests
npm test

echo "Setup complete!"

chmod +x scripts/*.sh 