Skip to content

Commit 283048b

Browse files
committed
remove .env mentions
1 parent 943548b commit 283048b

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

ci.Qa.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ run:
3131
backend:
3232
steps:
3333
- name: start backend application
34-
command: . ./env && cd backend && uv run uvicorn app:app --port 3000 --host
34+
command: cd backend && uv run uvicorn app:app --port 3000 --host
3535
0.0.0.0 --workers 2
3636
plan: 20
3737
replicas: 1
@@ -44,7 +44,7 @@ run:
4444
api-docs:
4545
steps:
4646
- name: deploy docs
47-
command: . ./env && cd backend && uv run uvicorn doc:app_docs --host 0.0.0.0
47+
command: cd backend && uv run uvicorn doc:app_docs --host 0.0.0.0
4848
--port 3000 --workers 2
4949
plan: 20
5050
replicas: 1

ci.dev.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,22 @@ prepare:
1111
test:
1212
steps:
1313
- name: test frontend
14-
command: . ./env && cd frontend && uv run pytest
14+
command: cd frontend && uv run pytest
1515
- name: test backend
16-
command: ". ./env && cd backend && uv run pytest "
16+
command: cd backend && uv run pytest
1717
- name: security check frontend
18-
command: '. ./env && cd frontend && uv run bandit -r . -c pyproject.toml
18+
command: 'cd frontend && uv run bandit -r . -c pyproject.toml
1919
--format=custom --msg-template "{abspath}:{line}: {test_id}[{severity}]:
2020
{msg}" -o bandit-results.txt'
2121
- name: security check backend
22-
command: '. ./env && cd backend && uv run bandit -r . -c pyproject.toml
22+
command: 'cd backend && uv run bandit -r . -c pyproject.toml
2323
--format=custom --msg-template "{abspath}:{line}: {test_id}[{severity}]:
2424
{msg}" -o bandit-results.txt'
2525
run:
2626
frontend:
2727
steps:
2828
- name: start frontend application
29-
command: . ./env && cd frontend && uv run streamlit run --server.address 0.0.0.0
29+
command: cd frontend && uv run streamlit run --server.address 0.0.0.0
3030
--server.port 3000 main.py
3131
plan: 20
3232
replicas: 1
@@ -42,7 +42,7 @@ run:
4242
backend:
4343
steps:
4444
- name: start backend application
45-
command: . ./env && cd backend && uv run uvicorn app:app --reload --port 3000
45+
command: cd backend && uv run uvicorn app:app --reload --port 3000
4646
--host 0.0.0.0
4747
plan: 20
4848
replicas: 1
@@ -55,7 +55,7 @@ run:
5555
api-docs:
5656
steps:
5757
- name: deploy docs
58-
command: . ./env && cd backend && uv run uvicorn doc:app_docs --host 0.0.0.0
58+
command: cd backend && uv run uvicorn doc:app_docs --host 0.0.0.0
5959
--port 3000
6060
plan: 20
6161
replicas: 1

ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ run:
3131
backend:
3232
steps:
3333
- name: start backend application
34-
command: . ./env && cd backend && uv run uvicorn app:app --port 3000 --host
34+
command: cd backend && uv run uvicorn app:app --port 3000 --host
3535
0.0.0.0 --workers 2
3636
plan: 8
3737
replicas: 1
@@ -44,7 +44,7 @@ run:
4444
api-docs:
4545
steps:
4646
- name: deploy docs
47-
command: . ./env && cd backend && uv run uvicorn doc:app_docs --host 0.0.0.0
47+
command: cd backend && uv run uvicorn doc:app_docs --host 0.0.0.0
4848
--port 3000 --workers 2
4949
plan: 8
5050
replicas: 1

0 commit comments

Comments
 (0)