Skip to content

Commit 0494bde

Browse files
authored
Merge pull request #10 from digidem/claude/docker-github-actions-setup-01Y4VpXC8HgsBPKwb27yRmVa
Set up Docker and automated publishing workflow
2 parents efc9ff2 + 369e44d commit 0494bde

File tree

118 files changed

+7844
-3
lines changed

Some content is hidden

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

118 files changed

+7844
-3
lines changed

.dockerignore

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Dependencies
2+
node_modules
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
pnpm-debug.log*
7+
lerna-debug.log*
8+
9+
# Build output
10+
dist
11+
dist-ssr
12+
*.local
13+
14+
# Environment files
15+
.env
16+
.env.local
17+
.env.*.local
18+
19+
# Editor directories and files
20+
.vscode/*
21+
!.vscode/extensions.json
22+
.idea
23+
.DS_Store
24+
*.suo
25+
*.ntvs*
26+
*.njsproj
27+
*.sln
28+
*.sw?
29+
30+
# Testing
31+
coverage
32+
33+
# Git
34+
.git
35+
.gitignore
36+
.gitattributes
37+
38+
# CI/CD
39+
.github
40+
41+
# Documentation
42+
*.md
43+
DEPLOYMENT.md
44+
ICONS.md
45+
DEPLOYMENT_LOG.md
46+
47+
# Misc
48+
.husky
49+
.eslintcache

.env.test.example

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# E2E Test Environment Variables
2+
3+
# Test Server Configuration (Required)
4+
# The CoMapeo server URL to test against
5+
TEST_SERVER_URL=https://demo.comapeo.cloud
6+
7+
# Bearer token for API authentication (Required)
8+
# Get this from your CoMapeo server administrator
9+
TEST_BEARER_TOKEN=your-test-bearer-token-here
10+
11+
# Mapbox Token (Optional)
12+
# If provided, tests will use Mapbox features
13+
# If not provided, tests will use OpenStreetMap fallback
14+
VITE_MAPBOX_TOKEN=your-mapbox-token-here
15+
16+
# Base URL (Optional)
17+
# Overrides the default local development URL
18+
# BASE_URL=http://localhost:8080
19+
20+
# Playwright Configuration (Optional)
21+
# Number of parallel workers
22+
# PLAYWRIGHT_WORKERS=4
23+
24+
# Test retries
25+
# PLAYWRIGHT_RETRIES=2
26+
27+
# Test timeout in milliseconds
28+
# PLAYWRIGHT_TIMEOUT=30000

0 commit comments

Comments
 (0)