Skip to content

Commit 6c9e9e6

Browse files
jldeenCopilotmvkaranDamovisalangermank
committed
OctoCanvas: Complete GitHub-themed wallpaper and Devémon card generator
This project creates collectibles from GitHub user profiles: - Wallpaper Generator: Personalized wallpapers with contribution graphs - Devémon Card: Trading card-style collectibles with rarity system - README Banner: Custom GitHub profile banners Built with Astro, Preact, TypeScript, and Tailwind CSS. Features: - GitHub Universe theme with custom design system - Contribution graph visualization - Rarity-based trading cards - Multi-platform social sharing - Accessibility testing with Playwright - Responsive design for all devices Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: M V Karan <mvkaran@github.com> Co-authored-by: Damian Brady <damovisa@github.com> Co-authored-by: Jessica Deen <jldeen@github.com> Co-authored-by: Katie Langerman <langermank@github.com> Co-authored-by: Mike Perrotti <mperrotti@github.com>
0 parents  commit 6c9e9e6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+18513
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
workflow_dispatch:
9+
10+
permissions:
11+
contents: read
12+
pages: write
13+
id-token: write
14+
15+
# Allow only one concurrent deployment
16+
concurrency:
17+
group: "pages"
18+
cancel-in-progress: false
19+
20+
jobs:
21+
build:
22+
runs-on: ubuntu-latest
23+
steps:
24+
- name: Checkout
25+
uses: actions/checkout@v4
26+
27+
- name: Setup Node
28+
uses: actions/setup-node@v4
29+
with:
30+
node-version: 20
31+
cache: 'npm'
32+
33+
- name: Install dependencies
34+
run: npm ci
35+
36+
- name: Build site
37+
run: npm run build
38+
39+
- name: Upload artifact
40+
uses: actions/upload-pages-artifact@v3
41+
with:
42+
path: ./dist
43+
44+
deploy:
45+
needs: build
46+
runs-on: ubuntu-latest
47+
if: github.ref == 'refs/heads/main'
48+
environment:
49+
name: github-pages
50+
url: ${{ steps.deployment.outputs.page_url }}
51+
steps:
52+
- name: Deploy to GitHub Pages
53+
id: deployment
54+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# build output
2+
dist/
3+
# generated types
4+
.astro/
5+
6+
# dependencies
7+
node_modules/
8+
9+
# logs
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
pnpm-debug.log*
14+
15+
16+
# environment variables
17+
.env
18+
.env.production
19+
20+
# macOS-specific files
21+
.DS_Store
22+
23+
# jetbrains setting folder
24+
.idea/

0 commit comments

Comments
 (0)