mirror of
https://github.com/tonytins/tonybark.com.git
synced 2025-03-15 07:21:21 +00:00
Minor tweaks
- Renamed blog - Disallowed more bots - Updated gitignore - Revised README to make it clear that this is a WhiteWind blog, powered by WhiteBreeze
This commit is contained in:
parent
93c011eed9
commit
b8156f6e70
10 changed files with 282 additions and 86 deletions
191
.gitignore
vendored
191
.gitignore
vendored
|
@ -1,21 +1,176 @@
|
|||
node_modules
|
||||
# File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
|
||||
# Created by https://www.toptal.com/developers/gitignore/api/dotenv,node,svelte,visualstudiocode
|
||||
# Edit at https://www.toptal.com/developers/gitignore?templates=dotenv,node,svelte,visualstudiocode
|
||||
|
||||
# Output
|
||||
.output
|
||||
.vercel
|
||||
/.svelte-kit
|
||||
/build
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Env
|
||||
### dotenv ###
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
!.env.test
|
||||
|
||||
# Vite
|
||||
vite.config.js.timestamp-*
|
||||
vite.config.ts.timestamp-*
|
||||
### Node ###
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
lerna-debug.log*
|
||||
.pnpm-debug.log*
|
||||
|
||||
# Diagnostic reports (https://nodejs.org/api/report.html)
|
||||
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
||||
|
||||
# Runtime data
|
||||
pids
|
||||
*.pid
|
||||
*.seed
|
||||
*.pid.lock
|
||||
|
||||
# Directory for instrumented libs generated by jscoverage/JSCover
|
||||
lib-cov
|
||||
|
||||
# Coverage directory used by tools like istanbul
|
||||
coverage
|
||||
*.lcov
|
||||
|
||||
# nyc test coverage
|
||||
.nyc_output
|
||||
|
||||
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
||||
.grunt
|
||||
|
||||
# Bower dependency directory (https://bower.io/)
|
||||
bower_components
|
||||
|
||||
# node-waf configuration
|
||||
.lock-wscript
|
||||
|
||||
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
||||
build/Release
|
||||
|
||||
# Dependency directories
|
||||
node_modules/
|
||||
jspm_packages/
|
||||
|
||||
# Snowpack dependency directory (https://snowpack.dev/)
|
||||
web_modules/
|
||||
|
||||
# TypeScript cache
|
||||
*.tsbuildinfo
|
||||
|
||||
# Optional npm cache directory
|
||||
.npm
|
||||
|
||||
# Optional eslint cache
|
||||
.eslintcache
|
||||
|
||||
# Optional stylelint cache
|
||||
.stylelintcache
|
||||
|
||||
# Microbundle cache
|
||||
.rpt2_cache/
|
||||
.rts2_cache_cjs/
|
||||
.rts2_cache_es/
|
||||
.rts2_cache_umd/
|
||||
|
||||
# Optional REPL history
|
||||
.node_repl_history
|
||||
|
||||
# Output of 'npm pack'
|
||||
*.tgz
|
||||
|
||||
# Yarn Integrity file
|
||||
.yarn-integrity
|
||||
|
||||
# dotenv environment variable files
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
.env.local
|
||||
|
||||
# parcel-bundler cache (https://parceljs.org/)
|
||||
.cache
|
||||
.parcel-cache
|
||||
|
||||
# Next.js build output
|
||||
.next
|
||||
out
|
||||
|
||||
# Nuxt.js build / generate output
|
||||
.nuxt
|
||||
dist
|
||||
|
||||
# Gatsby files
|
||||
.cache/
|
||||
# Comment in the public line in if your project uses Gatsby and not Next.js
|
||||
# https://nextjs.org/blog/next-9-1#public-directory-support
|
||||
# public
|
||||
|
||||
# vuepress build output
|
||||
.vuepress/dist
|
||||
|
||||
# vuepress v2.x temp and cache directory
|
||||
.temp
|
||||
|
||||
# Docusaurus cache and generated files
|
||||
.docusaurus
|
||||
|
||||
# Serverless directories
|
||||
.serverless/
|
||||
|
||||
# FuseBox cache
|
||||
.fusebox/
|
||||
|
||||
# DynamoDB Local files
|
||||
.dynamodb/
|
||||
|
||||
# TernJS port file
|
||||
.tern-port
|
||||
|
||||
# Stores VSCode versions used for testing VSCode extensions
|
||||
.vscode-test
|
||||
|
||||
# yarn v2
|
||||
.yarn/cache
|
||||
.yarn/unplugged
|
||||
.yarn/build-state.yml
|
||||
.yarn/install-state.gz
|
||||
.pnp.*
|
||||
|
||||
### Node Patch ###
|
||||
# Serverless Webpack directories
|
||||
.webpack/
|
||||
|
||||
# Optional stylelint cache
|
||||
|
||||
# SvelteKit build / generate output
|
||||
.svelte-kit
|
||||
|
||||
### Svelte ###
|
||||
# gitignore template for the SvelteKit, frontend web component framework
|
||||
# website: https://kit.svelte.dev/
|
||||
|
||||
.svelte-kit/
|
||||
package
|
||||
|
||||
### VisualStudioCode ###
|
||||
.vscode/*
|
||||
!.vscode/settings.json
|
||||
!.vscode/tasks.json
|
||||
!.vscode/launch.json
|
||||
!.vscode/extensions.json
|
||||
!.vscode/*.code-snippets
|
||||
|
||||
# Local History for Visual Studio Code
|
||||
.history/
|
||||
|
||||
# Built Visual Studio Code Extensions
|
||||
*.vsix
|
||||
|
||||
### VisualStudioCode Patch ###
|
||||
# Ignore all local history of files
|
||||
.history
|
||||
.ionide
|
||||
|
||||
# End of https://www.toptal.com/developers/gitignore/api/dotenv,node,svelte,visualstudiocode
|
||||
|
||||
# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
|
||||
|
||||
|
|
32
README.md
32
README.md
|
@ -1,9 +1,21 @@
|
|||
# WhiteBreeze
|
||||
A small frontend for [WhiteWind](https://whtwnd.com/), a MarkDown blog service using [ATProto](https://atproto.com/).
|
||||
WhiteBreeze targets a single user and is meant for someone to self-host their WhiteWind blog posts, without having to direct users to the WhiteWind website.
|
||||
# TonyBark.com
|
||||
|
||||
A small, self-hosted [WhiteWind](https://whtwnd.com/) blog, powered by [WhiteBreeze](https://github.com/hugeblank/whitebreeze).
|
||||
|
||||
## Usage
|
||||
|
||||
*[Bun](https://bun.sh/) recommended.*
|
||||
|
||||
### Environment variables
|
||||
|
||||
Whether in development or production, you will need to change environment variables when working with WhiteBreeze.
|
||||
|
||||
```sh
|
||||
PUBLIC_HANDLE="myhandle.bsky.social" # Your handle, or DID
|
||||
PUBLIC_ABOUT="Welcome to my blog!" # Optional description of the kinds of posts you'll be making, or a greeting.
|
||||
# PUBLIC_ABOUT Shows up under your Bluesky profile description in the profile card.
|
||||
```
|
||||
|
||||
### Development
|
||||
|
||||
```sh
|
||||
|
@ -11,16 +23,7 @@ npm install
|
|||
npm run dev
|
||||
```
|
||||
|
||||
### Production
|
||||
|
||||
Change environment variables:
|
||||
```sh
|
||||
PUBLIC_HANDLE="myhandle.bsky.social" # Your handle, or DID
|
||||
PUBLIC_ABOUT="Welcome to my blog!" # Optional description of the kinds of posts you'll be making, or a greeting.
|
||||
# PUBLIC_ABOUT Shows up under your Bluesky profile description in the profile card.
|
||||
```
|
||||
|
||||
#### Standalone
|
||||
### Standalone
|
||||
|
||||
```
|
||||
npm install
|
||||
|
@ -29,7 +32,8 @@ node index.js
|
|||
```
|
||||
Put environment variables ahead of the last command, port can also be configured with `PORT`.
|
||||
|
||||
#### Dockerized
|
||||
### Dockerized
|
||||
|
||||
Modify `docker-compose.yaml` and change the host port if necessary.
|
||||
|
||||
```
|
||||
|
|
BIN
bun.lockb
Executable file
BIN
bun.lockb
Executable file
Binary file not shown.
|
@ -2,12 +2,23 @@
|
|||
import { profile } from "./identity";
|
||||
</script>
|
||||
|
||||
<div class="p-4 bg-local relative border-gray-500 border-[1px] rounded-[1em] m-2" style="background-image: url({profile.banner}); background-size: cover; background-position: center;">
|
||||
<div
|
||||
class="p-4 bg-local relative border-gray-500 border-[1px] rounded-[1em] m-2"
|
||||
style="background-image: url({profile.banner}); background-size: cover; background-position: center;"
|
||||
>
|
||||
<div class="flex m-2 p-3 bg-black bg-opacity-80 rounded-md shrink">
|
||||
<img src={profile.avatar} alt="Bluesky avatar" class="rounded-full w-[4em] m-2 h-full"/>
|
||||
<img
|
||||
src={profile.avatar}
|
||||
alt="Bluesky avatar"
|
||||
class="rounded-full w-[4em] m-2 h-full"
|
||||
/>
|
||||
<div class="p-3">
|
||||
<h4 class="">{profile.displayName}</h4>
|
||||
<h6 class="hover:text-blue-500 hover:underline"><a href="https://bsky.app/profile/{profile.handle}">@{profile.handle}</a></h6>
|
||||
<h6 class="hover:text-blue-500 hover:underline">
|
||||
<a href="https://bsky.app/profile/{profile.handle}"
|
||||
>@{profile.handle}</a
|
||||
>
|
||||
</h6>
|
||||
</div>
|
||||
<div class="p-3">
|
||||
<p class="">{profile.description}</p>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<script lang="ts">
|
||||
import Profile from '$lib/Profile.svelte';
|
||||
import '../app.css';
|
||||
import Profile from "$lib/Profile.svelte";
|
||||
import "../app.css";
|
||||
let { children } = $props();
|
||||
</script>
|
||||
|
||||
|
@ -12,4 +12,9 @@
|
|||
<Profile />
|
||||
{@render children()}
|
||||
</div>
|
||||
<footer class="text-center"><a class="hover:underline hover:text-blue-500" href="https://github.com/hugeblank/whitebreeze">WhiteBreeze</a></footer>
|
||||
<footer class="text-center">
|
||||
Powered by <a
|
||||
class="hover:underline hover:text-blue-500"
|
||||
href="https://github.com/hugeblank/whitebreeze">WhiteBreeze</a
|
||||
>
|
||||
</footer>
|
||||
|
|
|
@ -1,17 +1,24 @@
|
|||
<script lang="ts">
|
||||
const {data} = $props()
|
||||
const posts = data.posts
|
||||
const { data } = $props();
|
||||
const posts = data.posts;
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>WhiteBreeze</title>
|
||||
<title>Tony Bark Online</title>
|
||||
<meta name="description" content="Self-Hosted WhiteWind Blogspot" />
|
||||
</svelte:head>
|
||||
<div class="grid grid-cols-[repeat(auto-fill,minmax(260px,1fr)_)] gap-x-2.5 gap-y-5 justify-between ml-2 mr-2">
|
||||
<div
|
||||
class="grid grid-cols-[repeat(auto-fill,minmax(260px,1fr)_)] gap-x-2.5 gap-y-5 justify-between ml-2 mr-2"
|
||||
>
|
||||
{#each posts as post}
|
||||
<a href="{post.rkey}">
|
||||
<div class="border rounded-[1em] border-solid border-[gray] p-[1em]">
|
||||
<p class="text-[cornflowerblue] leading-[1.5]">{post.title}</p><br/>{post.createdAt.toDateString() + " @ " + post.createdAt.toLocaleTimeString()}<br/>
|
||||
<a href={post.rkey}>
|
||||
<div
|
||||
class="border rounded-[1em] border-solid border-[gray] p-[1em]"
|
||||
>
|
||||
<p class="text-[cornflowerblue] leading-[1.5]">{post.title}</p>
|
||||
<br />{post.createdAt.toDateString() +
|
||||
" @ " +
|
||||
post.createdAt.toLocaleTimeString()}<br />
|
||||
</div>
|
||||
</a>
|
||||
{/each}
|
||||
|
|
|
@ -4,12 +4,15 @@
|
|||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>{data.title} - WhiteBreeze</title>
|
||||
<meta name="description" content="This is where the description goes for SEO" />
|
||||
<title>{data.title} - Tony Bark Online</title>
|
||||
<meta
|
||||
name="description"
|
||||
content="This is where the description goes for SEO"
|
||||
/>
|
||||
</svelte:head>
|
||||
|
||||
<h1 class="text-center pt-4 pb-4">{data.title}</h1>
|
||||
<hr class="pb-4">
|
||||
<hr class="pb-4" />
|
||||
<article class="mx-auto max-w-4xl px-2 sm:px-6 lg:px-8 prose dark:prose-invert">
|
||||
{@html data.mdcontent}
|
||||
</article>
|
|
@ -1,11 +1,18 @@
|
|||
|
||||
<svelte:head>
|
||||
<title>About - WhiteBreeze</title>
|
||||
<title>About - Tony Bark Online</title>
|
||||
<meta name="description" content="Self-Hosted WhiteWind Blogspot" />
|
||||
</svelte:head>
|
||||
|
||||
<p class="m-3">
|
||||
WhiteBreeze is a small frontend for <a class="text-blue-500 hover:underline" href="https://whtwnd.com/">WhiteWind</a>,
|
||||
intended for users who would like to self host their own blogs on their own webpage. The user who this WhiteBreeze instance is targeting is shown on every page.
|
||||
If you would like to host your own WhiteWind blog posts, consider cloning <a class="text-blue-500 hover:underline" href="https://github.com/hugeblank/whitebreeze">WhiteBreeze on GitHub</a>.
|
||||
WhiteBreeze is a small frontend for <a
|
||||
class="text-blue-500 hover:underline"
|
||||
href="https://whtwnd.com/">WhiteWind</a
|
||||
>, intended for users who would like to self host their own blogs on their
|
||||
own webpage. The user who this WhiteBreeze instance is targeting is shown on
|
||||
every page. If you would like to host your own WhiteWind blog posts,
|
||||
consider cloning
|
||||
<a
|
||||
class="text-blue-500 hover:underline"
|
||||
href="https://github.com/hugeblank/whitebreeze">WhiteBreeze on GitHub</a
|
||||
>.
|
||||
</p>
|
|
@ -3,6 +3,7 @@ User-Agent: ChatGPT-User
|
|||
User-Agent: ClaudeBot
|
||||
User-Agent: anthropic-ai
|
||||
User-Agent: CCBot
|
||||
User-agent: Bytespider
|
||||
User-Agent: FacebookBot
|
||||
User-Agent: Twitterbot
|
||||
User-Agent: PerplexityBot
|
||||
|
@ -12,6 +13,7 @@ User-Agent: mlbot
|
|||
User-Agent: PetalBot
|
||||
User-Agent: Amazonbot
|
||||
User-Agent: DuckAssistBot
|
||||
User-agent: Diffbot
|
||||
User-Agent: OAI-SearchBot
|
||||
User-Agent: OAI-SearchBot
|
||||
User-Agent: omgili
|
||||
|
@ -21,4 +23,6 @@ User-Agent: Webzio-Extended
|
|||
User-Agent: Meta-ExternalAgent
|
||||
User-Agent: Meta-ExternalFetcher
|
||||
User-Agent: cohere-ai
|
||||
User-agent: Google-Extended
|
||||
User-agent: PerplexityBot
|
||||
Disallow: /
|
Loading…
Add table
Reference in a new issue