Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat/create better solution for env vars #725

Draft
wants to merge 19 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
819e405
chore: create script for automatic creating `.env` file and update RE…
PatrykKuniczak Sep 5, 2024
2f42798
chore: create script for load env from CLI into `.env`
PatrykKuniczak Sep 10, 2024
eb61a44
chore: create more validation for set_global_env.sh
PatrykKuniczak Sep 10, 2024
2d5f444
fix: remove unnecessary else from copy_env.sh
PatrykKuniczak Sep 10, 2024
d34a974
chore: add `with-env` script to root package.json
PatrykKuniczak Sep 10, 2024
4e9677a
chore: update readme Env Vars section
PatrykKuniczak Sep 10, 2024
2aeb26d
fix: remove type-check from build and remove cross-env where I've for…
PatrykKuniczak Sep 10, 2024
13d4ece
fix: adjust pnpm-lock.yaml to changes after main rebase
PatrykKuniczak Sep 11, 2024
7efe2a7
chore: add move explanation about CLI env setting to README.md
PatrykKuniczak Sep 11, 2024
5ca6a1c
chore: add node type for all modules tsconfig.json
PatrykKuniczak Sep 11, 2024
d98d475
chore: add patterns for globalEnv for turbo
PatrykKuniczak Sep 11, 2024
11c352c
chore: rename example env
PatrykKuniczak Sep 11, 2024
ad5be76
chore: update README.md for new approach
PatrykKuniczak Sep 11, 2024
b3d6895
chore: update set_global_env.sh script to the new prefixes CLI_CEB an…
PatrykKuniczak Sep 11, 2024
bba4bdf
chore: update README.md for new approach
PatrykKuniczak Sep 11, 2024
06743f4
chore: remove `with-env` and replace old env values
PatrykKuniczak Sep 11, 2024
063fabf
chore: rename CI env to new pattern
PatrykKuniczak Sep 11, 2024
0a5a540
fix: change last forgotten __FIREFOX__ env
PatrykKuniczak Sep 11, 2024
4c03d1a
chore: create base-dev script and remove unnecessary staff from `e2e`
PatrykKuniczak Sep 11, 2024
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
Prev Previous commit
Next Next commit
fix: remove unnecessary else from copy_env.sh
  • Loading branch information
PatrykKuniczak committed Sep 11, 2024
commit 2d5f444edcab00e73bea3773520af8aaba65d70b
2 changes: 0 additions & 2 deletions copy_env.sh
Original file line number Diff line number Diff line change
@@ -5,6 +5,4 @@ if [ ! -f ".env" ] && [ -f ".example.env" ]; then
# Copy .example.env to .env
cp .example.env .env
echo ".example.env has been copied to .env"
else
echo 0;
fi