Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/galacsh/galacsh.io
Personal blog. Made with Galacsh/blog-template
https://github.com/galacsh/galacsh.io
blog
Last synced: 3 days ago
JSON representation
Personal blog. Made with Galacsh/blog-template
- Host: GitHub
- URL: https://github.com/galacsh/galacsh.io
- Owner: Galacsh
- License: mit
- Created: 2024-06-13T11:15:41.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-05T10:56:42.000Z (4 months ago)
- Last Synced: 2024-08-06T06:54:57.797Z (4 months ago)
- Topics: blog
- Language: TypeScript
- Homepage: https://galacsh.io/
- Size: 3.56 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Galacsh's Blog
This is my personal blog that was made with my [blog-template](https://github.com/Galacsh/blog-template).
# How to use this?
To my future myself:
```bash
# Clone with submodule
git clone --recursive [email protected]:Galacsh/galacsh.io.gitcd galacsh.io
# Link assets directory
ln -s "$(pwd)/posts/assets" "public/assets"# Install dependencies
npm install# Create environment variables file
cat << EOF > .env.production.local
# Name of the website
NEXT_PUBLIC_APP_NAME="Galacsh"# Short name of the website
NEXT_PUBLIC_APP_SHORT_NAME="Galacsh"# Description of the website
NEXT_PUBLIC_APP_DESCRIPTION="Galacsh's personal blog."# URL of the website (e.g. https://galacsh.github.io)
NEXT_PUBLIC_BASE_URL="https://galacsh.io"# About the author
NEXT_PUBLIC_ABOUT=">>>> Fill this <<<<"# Copyright range (e.g. 2023-2024 or 2024)
NEXT_PUBLIC_COPYRIGHT_RANGE="2024"# Google ANALYTICS
NEXT_PUBLIC_GOOGLE_ANALYTICS="G-0HR866Y002"# Google Site Verification
NEXT_PUBLIC_VERIFICATION_GOOGLE="cAdoZS7D10cMvqzHphlKCRYBFngAkTHiWSf1pQDNrb8"# Naver Site Verification
NEXT_PUBLIC_VERIFICATION_NAVER="f2b89b689efac87b9c27e08958ec1df1be546d94"
EOF# Test
npm start# Deploy
npm run deploy
```