1
1
---
2
- display_name : Auto-Start Development Servers
2
+ display_name : Auto-Start Dev Servers
3
3
description : Automatically detect and start development servers for various project types
4
- icon : ../../../../.icons/server.svg
4
+ icon : ../../../../.icons/auto-dev- server.svg
5
5
verified : false
6
6
tags : [development, automation, servers]
7
7
---
@@ -13,7 +13,7 @@ Automatically detect and start development servers for various project types whe
13
13
``` tf
14
14
module "auto_start_dev_servers" {
15
15
source = "registry.coder.com/mavrickrishi/auto-start-dev-server/coder"
16
- version = "1.0.0 "
16
+ version = "1.0.1 "
17
17
agent_id = coder_agent.main.id
18
18
}
19
19
```
@@ -48,20 +48,20 @@ module "auto_start_dev_servers" {
48
48
49
49
### Basic Usage
50
50
51
- ``` hcl
51
+ ``` tf
52
52
module "auto_start" {
53
53
source = "./modules/auto-start-dev-server"
54
- version = "1.0.0 "
54
+ version = "1.0.1 "
55
55
agent_id = coder_agent.main.id
56
56
}
57
57
```
58
58
59
59
### Advanced Usage
60
60
61
- ``` hcl
61
+ ``` tf
62
62
module "auto_start_dev_servers" {
63
63
source = "./modules/auto-start-dev-server"
64
- version = "1.0.0 "
64
+ version = "1.0.1 "
65
65
agent_id = coder_agent.main.id
66
66
67
67
# Optional: Configure which project types to detect
@@ -70,10 +70,10 @@ module "auto_start_dev_servers" {
70
70
enable_django = true
71
71
enable_flask = true
72
72
enable_spring_boot = true
73
- enable_go = true
74
- enable_php = true
75
- enable_rust = true
76
- enable_dotnet = true
73
+ enable_go = true
74
+ enable_php = true
75
+ enable_rust = true
76
+ enable_dotnet = true
77
77
78
78
# Optional: Enable devcontainer.json integration
79
79
enable_devcontainer = true
@@ -97,10 +97,10 @@ module "auto_start_dev_servers" {
97
97
98
98
### Disable Preview App
99
99
100
- ``` hcl
100
+ ``` tf
101
101
module "auto_start" {
102
102
source = "./modules/auto-start-dev-server"
103
- version = "1.0.0 "
103
+ version = "1.0.1 "
104
104
agent_id = coder_agent.main.id
105
105
106
106
# Disable automatic preview app creation
@@ -110,10 +110,10 @@ module "auto_start" {
110
110
111
111
### Selective Project Types
112
112
113
- ``` hcl
113
+ ``` tf
114
114
module "auto_start" {
115
115
source = "./modules/auto-start-dev-server"
116
- version = "1.0.0 "
116
+ version = "1.0.1 "
117
117
agent_id = coder_agent.main.id
118
118
119
119
# Only enable web development projects
@@ -124,25 +124,25 @@ module "auto_start" {
124
124
125
125
# Disable other project types
126
126
enable_spring_boot = false
127
- enable_go = false
128
- enable_php = false
129
- enable_rust = false
130
- enable_dotnet = false
127
+ enable_go = false
128
+ enable_php = false
129
+ enable_rust = false
130
+ enable_dotnet = false
131
131
}
132
132
```
133
133
134
134
### Deep Workspace Scanning
135
135
136
- ``` hcl
136
+ ``` tf
137
137
module "auto_start" {
138
138
source = "./modules/auto-start-dev-server"
139
- version = "1.0.0 "
139
+ version = "1.0.1 "
140
140
agent_id = coder_agent.main.id
141
141
142
142
workspace_directory = "/workspaces"
143
- scan_depth = 3
144
- startup_delay = 5
145
- log_path = "/var/log/dev-servers.log"
143
+ scan_depth = 3
144
+ startup_delay = 5
145
+ log_path = "/var/log/dev-servers.log"
146
146
}
147
147
```
148
148
0 commit comments