Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jerkeeler/keeler-dev
Static website for keeler.dev
https://github.com/jerkeeler/keeler-dev
Last synced: 4 days ago
JSON representation
Static website for keeler.dev
- Host: GitHub
- URL: https://github.com/jerkeeler/keeler-dev
- Owner: jerkeeler
- Created: 2019-05-25T14:43:45.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-12-08T23:18:12.000Z (about 1 month ago)
- Last Synced: 2024-12-09T00:24:36.970Z (about 1 month ago)
- Language: Astro
- Homepage: https://keeler.dev
- Size: 9.77 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# keeler.dev
[![Netlify Status](https://api.netlify.com/api/v1/badges/593e4c46-fc9a-4444-8847-8eeb6f089ed0/deploy-status)](https://app.netlify.com/sites/keeler-dev/deploys)
[keeler.dev](https://keeler.dev) is made using [astro](https://astro.build/) and is deployed using [netlify](https://www.netlify.com/).
## 🧞 Commands
All commands are run from the root of the project, from a terminal:
| Command | Action |
| :------------------------ | :----------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts local dev server at `localhost:3000` |
| `npm run build` | Build your production site to `./dist/` |
| `npm run preview` | Preview your build locally, before deploying |
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
| `npm run astro -- --help` | Get help using the Astro CLI |## Images
Make sure images are in a reasonable format before adding them to the website. Both for git reasons (not great with large binaries) and to reduce bandwidth usage. I would suggest using [ImageMagick](https://imagemagick.org/script/mogrify.php) and a command like:
```$bash
mogrify -resize 1000 -quality 75 -format jpg *.*
```