Skip to content

Commit 55f2d12

Browse files
authoredFeb 2, 2024
[Maintenance] Pass HTTPS flag to dev container to enable HTTPS (actualbudget#2316)
1 parent 6ae2047 commit 55f2d12

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed
 

‎docker-compose.yml

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ services:
88
actual-development:
99
build: .
1010
image: actual-development
11+
environment:
12+
- HTTPS
1113
ports:
1214
- '3001:3001'
1315
volumes:

‎packages/desktop-client/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,12 @@ First start a dev instance:
3737
```sh
3838
HTTPS=true yarn start
3939
```
40+
41+
or using the dev container:
42+
```
43+
HTTPS=true docker compose up --build
44+
```
45+
4046
Note the network IP address and port the dev instance is listening on.
4147

4248
Next, navigate to the root of your project folder, run the standartised docker container, and launch the visual regression tests from within it.

‎upcoming-release-notes/2316.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
category: Maintenance
3+
authors: [jaarasys-henria]
4+
---
5+
6+
Enable passing HTTPS env variable flag to dev container for easy HTTPS enabling.

0 commit comments

Comments
 (0)
Please sign in to comment.