Skip to content
This repository has been archived by the owner on Feb 23, 2025. It is now read-only.

refactor: config management #550

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
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
5 changes: 1 addition & 4 deletions scripts/dotenv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,5 @@
# usage:
# bash scripts/dotenv.sh [dotenv-file] [command...]

dotenv_file="$1"
shift

# shellcheck disable=SC2046
env $(grep -v '^#' "$dotenv_file") "${@}"
env $(grep -v '^#' "$1") "${@:2}"
1 change: 1 addition & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import unocss from "unocss/vite";
import { defineConfig } from "vitest/config";

export default defineConfig({
envDir: "__disable",
clearScreen: false,
server: {
port: Number(process.env.PORT ?? "3000"),
Expand Down