-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from jasonraimondi/next
v2.0.0
- Loading branch information
Showing
56 changed files
with
5,288 additions
and
2,838 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,63 @@ | ||
ALLOW_LIST=jasonraimondi.com,github.com | ||
# Logging level (debug, info, warn, error) | ||
LOG_LEVEL=debug | ||
|
||
STORAGE_PROVIDER= | ||
# Node environment (development, production) | ||
NODE_ENV=development | ||
|
||
COUCH_DB_PROTOCOL= | ||
COUCH_DB_HOST= | ||
COUCH_DB_PORT= | ||
COUCH_DB_USER= | ||
COUCH_DB_PASS= | ||
# Port number for the application to listen on (optional) | ||
#PORT=3089 | ||
|
||
AWS_ACCESS_KEY= | ||
AWS_SECRET_KEY= | ||
AWS_REGION= | ||
AWS_BUCKET= | ||
# Comma-separated list of allowed domains for screenshots (optional) | ||
#ALLOW_LIST=jasonraimondi.com,github.com | ||
|
||
BROWSER_TIMEOUT=10000 | ||
BROWSER_WAIT_UNTIL=domcontentloaded | ||
# Cache-Control header value for the responses (optional) | ||
#CACHE_CONTROL="public, max-age=86400, immutable" | ||
|
||
# Browser timeout in milliseconds for rendering (optional) | ||
#BROWSER_TIMEOUT=10000 | ||
|
||
# Event to wait for before considering the page loaded (optional) | ||
#BROWSER_WAIT_UNTIL=domcontentloaded | ||
|
||
# Idle timeout for database connection pool in milliseconds (optional) | ||
#POOL_IDLE_TIMEOUT_MS=15000 | ||
|
||
# Maximum number of connections in the database pool (optional) | ||
#POOL_MAX=10 | ||
|
||
# Maximum number of waiting clients for the database pool (optional) | ||
#POOL_MAX_WAITING_CLIENTS=50 | ||
|
||
# Minimum number of connections in the database pool (optional) | ||
#POOL_MIN=2 | ||
|
||
# Enable or disable metrics collection (optional) | ||
#METRICS=false | ||
|
||
# Encryption key for sensitive data (optional) | ||
#CRYPTO_KEY= | ||
|
||
# Storage provider (stub, s3, couchdb, filesystem) | ||
STORAGE_PROVIDER=stub | ||
|
||
# Configuration for filesystem storage provider (optional) | ||
#STORAGE_PROVIDER=filesystem | ||
#IMAGE_STORAGE_PATH= | ||
|
||
# Configuration for S3 storage provider (optional) | ||
#STORAGE_PROVIDER=s3 | ||
#AWS_BUCKET= | ||
#AWS_ACCESS_KEY_ID= | ||
#AWS_SECRET_ACCESS_KEY= | ||
#AWS_DEFAULT_REGION=us-east-1 | ||
#AWS_ENDPOINT_URL_S3= | ||
#AWS_FORCE_PATH_STYLE=false | ||
|
||
# Configuration for CouchDB storage provider (optional) | ||
#STORAGE_PROVIDER=couchdb | ||
#COUCH_DB_HOST= | ||
#COUCH_DB_PASS= | ||
#COUCH_DB_PORT= | ||
#COUCH_DB_PROTOCOL= | ||
#COUCH_DB_USER= | ||
#COUCHDB_DATABASE=images |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Deploy VitePress site to GitHub Pages | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- next | ||
paths: | ||
- '.github/workflows/docs.yml' | ||
- 'docs/**' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: pnpm/action-setup@v3 | ||
with: | ||
version: 8 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
cache: pnpm | ||
cache-dependency-path: pnpm-lock.yaml | ||
- run: pnpm install --frozen-lockfile | ||
- run: pnpm docs:build | ||
- uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: docs/.vitepress/dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[tools] | ||
node = "20" | ||
pnpm = "8" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"printWidth": 120, | ||
"semi": true, | ||
"singleQuote": false, | ||
"tabWidth": 2, | ||
"trailingComma": "all" | ||
} | ||
arrowParens: avoid | ||
bracketSpacing: true | ||
printWidth: 100 | ||
trailingComma: all | ||
tabWidth: 2 | ||
semi: true | ||
singleQuote: false |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.