-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(improvement) Preparing for a new selfhosted release (#235)
* prepare for a new selfhosted release * funnels fix & project ordering * api key auth support * fix broken migration * selfhosted: v2 -> v3 migration script * fix migration * empty projects error fix * bump clickhouse-server * bump redis
- Loading branch information
Showing
36 changed files
with
937 additions
and
128 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 |
---|---|---|
|
@@ -44,6 +44,7 @@ SMTP_MOCK=true | |
# Selfhosted | ||
EMAIL=[email protected] | ||
PASSWORD=12345678 | ||
API_KEY= | ||
|
||
# Swetrix CDN for storing files | ||
CDN_URL=http://localhost:5006 | ||
|
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 |
---|---|---|
|
@@ -20,7 +20,8 @@ ENV TZ=UTC \ | |
CLICKHOUSE_DATABASE=analytics \ | ||
API_ORIGINS=\ | ||
[email protected] \ | ||
PASSWORD=12345678 | ||
PASSWORD=12345678 \ | ||
API_KEY= | ||
RUN apk add --no-cache tzdata && cp /usr/share/zoneinfo/$TZ /etc/localtime | ||
WORKDIR /app | ||
COPY --from=build /build/package*.json ./ | ||
|
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
Oops, something went wrong.