My personal website hosted on Cloudflare Pages, available at ignacio.jimenezpi.com and at ignacio.systems.
A minimalist music portfolio to share some of my music projects.
A minimalist photography portfolio to share some of my film pictures.
Each project has its own README with detailed setup and development instructions.
# Install dependencies
npm install
# Build all CSS files
npm run build:css:all
# Watch CSS files during development
npm run watch:css:all # Watch all CSS files
npm run watch:css:music # Watch only music CSS
npm run watch:css:photography # Watch only photography CSSTo watch CSS files in VS Code:
-
Using Command Palette:
- Press
Cmd+Shift+P - Type "Tasks: Run Task"
- Select "Watch CSS"
- Press
-
Using Keyboard Shortcut:
- Press
Cmd+Shift+Wto start watching CSS files
- Press
The task will automatically install dependencies if needed.
Important: Always run npm run build:css:all before committing changes. The generated CSS files need to be committed for GitHub Pages to work correctly.