Official website for the Software Crafters Barcelona community.
- Node.js version 24.0.0 or higher
Install the dependencies:
npm installRun the development server:
npm run devThe site will be available at http://localhost:4321 (or another port if 4321 is in use).
Build the site for production:
npm run buildThe built site will be output to the ./dist directory.
To test the production build locally, you can serve the built site:
npx serve ./distAlternatively, use Astro's built-in preview command:
npm run previewThe site is automatically deployed to GitHub Pages when changes are pushed to the master branch via GitHub Actions.