Skip to content

NicksPatties/portfolio-site

Repository files navigation

Portfolio site

Commands

Command Action
pnpm run dev Starts local dev server at localhost:4321
pnpm run dev --host Exposes 10.0.0.12:4321 for testing on devices
pnpm run build Build your production site to ./dist/
pnpm run preview Preview your build locally, before deploying
pnpm run astro ... Run CLI commands like astro add, astro check
pnpm run astro --help Get help using the Astro CLI

Updating my resume

Edit the resume.json file to add new information.

This file follows the JSON format as seen in MegaResume. Here are some details about the expected JSON format.

Adding a blog post

pnpm new:blog {{name-of-the-article}}

  • name-of-the-article should not have spaces

Images

Cover photos

  • place them in the public/blog/<blog-name> directory
  • size: 1080 x 510

Blog images

  • place them in the src/assets/blog/<blog-name> directory
  • Images here will be processed by Astro

Info, Warning, and Danger sections

<div class="[info|warning|danger]">

Here's your text

Don't forget the spaces in the front and back. **Formatting works, too!**

</div>

Adding new tags

  1. Create a new YAML file (this filename is pretty much the slug of the tag)
  2. Add a name property to the file
  3. Add the tag filename to your blog posts in the tags array.

Adding new projects

---
name: "Project title"
description: "A description of the project"
# optional
heroImage: "/projects/project-title/cover.png"
# published: true
# optional
tags:
  - "astro"
  - "javascript"
---

Images

Cover photos

  • place them in the public/projects/<project-name> directory
  • size: 1080 x 510

Blog images

  • place them in the src/assets/projects/<project-name> directory
  • Images here will be processed by Astro

Adding images to blog posts

![Image alt text](@assets/blog/{{blog-title}}/{{image-name}})

Screenshots

You can automate screenshots for pages you want to check by using this command:

pnpm pw:screenshots

Check the screenshots directory for the screenshots and do your visual testing.

Debugging the Caddy server

This creates a server that is close to the actual nickspatties.com site.

pnpm build # builds the assets
pnpm docker:build # builds the image
pnpm docker:run # runs the container with that image

This runs a Caddy server that serves my assets. To visit it, use the local IPv4 address http://127.0.0.1.

Deploying changes to production server

pnpm build
scp -r dist aws-ubuntu-t2micro:~
ssh aws-ubuntu-t2micro
sudo mv dist/* /var/www/html/

I'll need to configure this better to support a directory that the user actually has access to.

Important Caddy server files

  • /var/www/html directory to place built site assets
  • /var/log/caddy/access.log Caddy server access logs
  • /etc/caddy/Caddyfile Caddy server configuration