Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ DATABASE_URL="postgresql://postgres:example@localhost:5432/postgres?schema=publi
OSM_USERNAME=name
GITHUB_USERNAME=name
GITHUB_TOKEN=token with public repo access
PIXELFED_URL=
PIXELFED_TOKEN=token with read access
BASE_URL=https://name.io/
CACHE_DURATION=10
IGNORED_REPOS=["name","name.github.io"]
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "RemoteData" ADD COLUMN "url" TEXT;
1 change: 1 addition & 0 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ model RemoteData {
subTitle String?
date DateTime?
image String?
url String?
}

model StreetCompleteQuest {
Expand Down
4 changes: 4 additions & 0 deletions src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,7 @@ body {
h1 {
@apply text-4xl pb-6;
}

h2 {
@apply text-3xl pb-3;
}
Loading