Skip to content
Merged
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ RUN \
echo "*** install your_spotify client ***" && \
cd /app/www && \
rm -rf /app/www/apps/server && \
CI=true pnpm install --frozen-lockfile && \
CI=true pnpm install --frozen-lockfile --dangerously-allow-all-builds && \
cd /app/www/apps/client && \
pnpm typecheck && \
pnpm build
Expand All @@ -46,7 +46,7 @@ FROM buildbase AS buildserver
RUN \
echo "*** install your_spotify server ***" && \
cd /app/www && \
CI=true pnpm install --frozen-lockfile && \
CI=true pnpm install --frozen-lockfile --dangerously-allow-all-builds && \
cd /app/www/apps/server && \
rm eslint.config.mts && \
pnpm typecheck && \
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ RUN \
echo "*** install your_spotify client ***" && \
cd /app/www && \
rm -rf /app/www/apps/server && \
CI=true pnpm install --frozen-lockfile && \
CI=true pnpm install --frozen-lockfile --dangerously-allow-all-builds && \
cd /app/www/apps/client && \
pnpm typecheck && \
pnpm build
Expand All @@ -46,7 +46,7 @@ FROM buildbase AS buildserver
RUN \
echo "*** install your_spotify server ***" && \
cd /app/www && \
CI=true pnpm install --frozen-lockfile && \
CI=true pnpm install --frozen-lockfile --dangerously-allow-all-builds && \
cd /app/www/apps/server && \
rm eslint.config.mts && \
pnpm typecheck && \
Expand Down
1 change: 1 addition & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ param_env_vars:
- {env_var: "APP_URL", env_value: "http://localhost", desc: "The protocol and hostname where the app will be accessed."}
- {env_var: "SPOTIFY_PUBLIC", env_value: "", desc: "Your Spotify application client ID."}
- {env_var: "SPOTIFY_SECRET", env_value: "", desc: "Your Spotify application secret."}
- {env_var: "SPOTIFY_API_DELAY_MS", env_value: "2000", desc: "Minimum delay in milliseconds between each spotify request. Can help with hitting 429 when importing data."}
- {env_var: "CORS", env_value: "http://localhost:80,https://localhost:443", desc: "Allowed CORS sources, set to `all` to allow any source."}
- {env_var: "MONGO_ENDPOINT", env_value: "mongodb://mongo:27017/your_spotify", desc: "Set mongodb endpoint address/port."}
# application setup block
Expand Down