devctl 1.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- devctl/__init__.py +3 -0
- devctl/commands/__init__.py +3 -0
- devctl/commands/add.py +166 -0
- devctl/commands/deploy.py +61 -0
- devctl/commands/docker.py +65 -0
- devctl/commands/init.py +193 -0
- devctl/commands/run.py +67 -0
- devctl/generators/__init__.py +3 -0
- devctl/generators/angular.py +112 -0
- devctl/generators/django.py +61 -0
- devctl/generators/docker_scaffold.py +656 -0
- devctl/generators/fastapi.py +67 -0
- devctl/generators/go_fiber.py +61 -0
- devctl/generators/nestjs.py +49 -0
- devctl/generators/nextjs.py +53 -0
- devctl/generators/nodejs.py +109 -0
- devctl/generators/react.py +43 -0
- devctl/generators/scaffold_angular.py +163 -0
- devctl/generators/scaffold_django.py +79 -0
- devctl/generators/scaffold_fastapi.py +83 -0
- devctl/generators/scaffold_go.py +67 -0
- devctl/generators/scaffold_nestjs.py +52 -0
- devctl/generators/scaffold_nextjs.py +73 -0
- devctl/generators/scaffold_nodejs.py +81 -0
- devctl/generators/scaffold_react.py +80 -0
- devctl/generators/scaffold_spring.py +166 -0
- devctl/generators/scaffold_svelte.py +73 -0
- devctl/generators/scaffold_vue.py +111 -0
- devctl/generators/spring.py +221 -0
- devctl/generators/svelte.py +52 -0
- devctl/generators/vue.py +105 -0
- devctl/main.py +45 -0
- devctl/orchestrator/__init__.py +3 -0
- devctl/orchestrator/config_builder.py +64 -0
- devctl/orchestrator/runner.py +219 -0
- devctl/orchestrator/scanner.py +155 -0
- devctl/templates/angular/config/environment.development.ts.j2 +4 -0
- devctl/templates/angular/config/environment.ts.j2 +5 -0
- devctl/templates/angular/config/proxy.conf.json.j2 +8 -0
- devctl/templates/angular/feature/models/request.model.ts.j2 +5 -0
- devctl/templates/angular/feature/models/response.model.ts.j2 +6 -0
- devctl/templates/angular/feature/pages/form/form.component.html.j2 +21 -0
- devctl/templates/angular/feature/pages/form/form.component.scss.j2 +0 -0
- devctl/templates/angular/feature/pages/form/form.component.ts.j2 +63 -0
- devctl/templates/angular/feature/pages/list/list.component.html.j2 +28 -0
- devctl/templates/angular/feature/pages/list/list.component.scss.j2 +0 -0
- devctl/templates/angular/feature/pages/list/list.component.ts.j2 +34 -0
- devctl/templates/angular/feature/routes.ts.j2 +9 -0
- devctl/templates/angular/feature/services/service.ts.j2 +34 -0
- devctl/templates/docker/deploy.yml.j2 +37 -0
- devctl/templates/docker/django/Dockerfile.j2 +21 -0
- devctl/templates/docker/fastapi/Dockerfile.j2 +15 -0
- devctl/templates/docker/frontend/Dockerfile.j2 +31 -0
- devctl/templates/docker/go/Dockerfile.j2 +24 -0
- devctl/templates/docker/nestjs/Dockerfile.j2 +26 -0
- devctl/templates/docker/nextjs/Dockerfile.j2 +43 -0
- devctl/templates/docker/nodejs/Dockerfile.j2 +24 -0
- devctl/templates/docker/spring/Dockerfile.j2 +24 -0
- devctl/templates/docker/svelte/Dockerfile.j2 +24 -0
- devctl/templates/proxy.conf.json.j2 +0 -0
- devctl/templates/spring/Controller.java.j2 +50 -0
- devctl/templates/spring/Entity.java.j2 +22 -0
- devctl/templates/spring/Repository.java.j2 +9 -0
- devctl/templates/spring/Service.java.j2 +20 -0
- devctl/templates/spring/ServiceImpl.java.j2 +62 -0
- devctl/templates/spring/application.properties.j2 +19 -0
- devctl/templates/spring/config/ApplicationConfig.java.j2 +46 -0
- devctl/templates/spring/config/JwtAuthenticationFilter.java.j2 +54 -0
- devctl/templates/spring/config/JwtService.java.j2 +68 -0
- devctl/templates/spring/config/SecurityConfig.java.j2 +42 -0
- devctl/templates/spring/docker-compose.yml.j2 +29 -0
- devctl/templates/spring/dto/Request.java.j2 +20 -0
- devctl/templates/spring/dto/Response.java.j2 +22 -0
- devctl/templates/spring/mapper/Mapper.java.j2 +30 -0
- devctl/templates/vue/config/App.vue.j2 +35 -0
- devctl/templates/vue/config/main.ts.j2 +9 -0
- devctl/templates/vue/config/router.ts.j2 +18 -0
- devctl/templates/vue/config/vite.config.ts.j2 +16 -0
- devctl/templates/vue/feature/Form.vue.j2 +162 -0
- devctl/templates/vue/feature/List.vue.j2 +155 -0
- devctl/templates/vue/feature/models.ts.j2 +12 -0
- devctl/templates/vue/feature/routes.ts.j2 +19 -0
- devctl/templates/vue/feature/service.ts.j2 +44 -0
- devctl/utils/__init__.py +3 -0
- devctl/utils/dependencies.py +36 -0
- devctl/utils/env_loader.py +57 -0
- devctl-1.0.0.dist-info/METADATA +127 -0
- devctl-1.0.0.dist-info/RECORD +92 -0
- devctl-1.0.0.dist-info/WHEEL +5 -0
- devctl-1.0.0.dist-info/entry_points.txt +2 -0
- devctl-1.0.0.dist-info/licenses/LICENSE +21 -0
- devctl-1.0.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: devctl
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Local development orchestrator for Spring Boot, Angular, and Vue.js
|
|
5
|
+
Author: Youssef Fellah
|
|
6
|
+
License: MIT License
|
|
7
|
+
|
|
8
|
+
Copyright (c) 2026 Youssef Fellah
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
+
in the Software without restriction, including without limitation the rights
|
|
13
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
+
furnished to do so, subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be included in all
|
|
18
|
+
copies or substantial portions of the Software.
|
|
19
|
+
|
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
|
+
SOFTWARE.
|
|
27
|
+
|
|
28
|
+
Classifier: Programming Language :: Python :: 3
|
|
29
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
30
|
+
Classifier: Operating System :: OS Independent
|
|
31
|
+
Classifier: Topic :: Software Development :: Build Tools
|
|
32
|
+
Requires-Python: >=3.9
|
|
33
|
+
Description-Content-Type: text/markdown
|
|
34
|
+
License-File: LICENSE
|
|
35
|
+
Requires-Dist: typer>=0.12.3
|
|
36
|
+
Requires-Dist: requests>=2.31.0
|
|
37
|
+
Requires-Dist: jinja2>=3.1.3
|
|
38
|
+
Requires-Dist: rich>=13.7.0
|
|
39
|
+
Requires-Dist: pyyaml>=6.0.1
|
|
40
|
+
Dynamic: license-file
|
|
41
|
+
|
|
42
|
+
# devctl
|
|
43
|
+
|
|
44
|
+
`devctl` is a professional command-line interface (CLI) designed to automate and
|
|
45
|
+
orchestrate the development lifecycle for modern full-stack architectures. It
|
|
46
|
+
provides a unified workflow for managing backends (Spring Boot, NestJS, Go,
|
|
47
|
+
FastAPI), frontends (Angular, Vue, React, NextJS, Svelte), and their
|
|
48
|
+
containerization.
|
|
49
|
+
|
|
50
|
+
## Core Features
|
|
51
|
+
|
|
52
|
+
- **Multi-Stack Orchestration**: Launch databases, multiple microservices, and
|
|
53
|
+
frontend dev servers with a single command. Includes real-time, prefixed log
|
|
54
|
+
streaming.
|
|
55
|
+
- **Full-Stack Scaffolding**: Generate consistent business resources
|
|
56
|
+
(Entities, DTOs, Controllers, Services) across both backend and frontend
|
|
57
|
+
layers simultaneously.
|
|
58
|
+
- **Instant Infrastructure**: Automatically generate optimized, multi-stage
|
|
59
|
+
`Dockerfiles` and global `docker-compose-prod.yml` configurations by scanning
|
|
60
|
+
your project tree.
|
|
61
|
+
- **Security by Default**: Inject standardized JWT authentication and security
|
|
62
|
+
configurations into new projects.
|
|
63
|
+
|
|
64
|
+
## Installation
|
|
65
|
+
|
|
66
|
+
You can install `devctl` locally for development:
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
git clone https://github.com/yss-ef/devctl.git
|
|
70
|
+
cd devctl
|
|
71
|
+
pip install -e .
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
## Quick Start
|
|
75
|
+
|
|
76
|
+
### 1. Initialize a Full-Stack Project
|
|
77
|
+
|
|
78
|
+
Create a new backend and frontend in seconds:
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
mkdir my-app && cd my-app
|
|
82
|
+
devctl init spring api --db postgres
|
|
83
|
+
devctl init angular front
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
### 2. Add a Business Resource
|
|
87
|
+
|
|
88
|
+
Generate a complete vertical slice of your application:
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
devctl add resource Product -f "name:string,price:double,quantity:int"
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
### 3. Run the Environment
|
|
95
|
+
|
|
96
|
+
Launch everything in parallel with automatic database startup:
|
|
97
|
+
|
|
98
|
+
```bash
|
|
99
|
+
devctl run
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
## Supported Stacks
|
|
103
|
+
|
|
104
|
+
| Type | Frameworks / Technologies |
|
|
105
|
+
| :--- | :--- |
|
|
106
|
+
| **Backends** | Spring Boot, NestJS, Express (NodeJS), FastAPI, Django, Go (Fiber) |
|
|
107
|
+
| **Frontends** | Angular, Vue.js, ReactJS, NextJS, Svelte |
|
|
108
|
+
| **Databases** | PostgreSQL, MySQL, MongoDB |
|
|
109
|
+
|
|
110
|
+
## Documentation
|
|
111
|
+
|
|
112
|
+
For a detailed reference of all available commands and their options, see the
|
|
113
|
+
[Commands Reference](COMMANDS.md).
|
|
114
|
+
|
|
115
|
+
## Contributing
|
|
116
|
+
|
|
117
|
+
Contributions are welcome! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for
|
|
118
|
+
development setup and code quality guidelines.
|
|
119
|
+
|
|
120
|
+
## License
|
|
121
|
+
|
|
122
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
|
|
123
|
+
for details.
|
|
124
|
+
|
|
125
|
+
---
|
|
126
|
+
Authored by Youssef Fellah.
|
|
127
|
+
Professional Development Orchestrator.
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
devctl/__init__.py,sha256=kvxSJYA3C8JkQEPe5IV8pZCYQDdgf1AA8If6TcqpGrg,75
|
|
2
|
+
devctl/main.py,sha256=nGIJIhIqPOuw80AOnH_nJEGkIUkOBrCHBJjvOXSTgQU,1271
|
|
3
|
+
devctl/commands/__init__.py,sha256=EZuqGRLRdPpMri5WHmiyhmz8aLs08R1tDQ4FtwMLqMQ,40
|
|
4
|
+
devctl/commands/add.py,sha256=HX7ZvSfphaMck3eX5kzmn_rhrGaDRdz_aOAG_-HzDec,6846
|
|
5
|
+
devctl/commands/deploy.py,sha256=0JLREpLsodlT8fnRJ0y-qJjcJN6HhHcV6AB6qdIa4-A,1696
|
|
6
|
+
devctl/commands/docker.py,sha256=XINlqTnLD8_AhKeaHFpyyIq5IMPHa5wmtTLwBEnP82A,1822
|
|
7
|
+
devctl/commands/init.py,sha256=upOwNZNehk35fmAqmOjk5LzIn62WuIl28UAhNSZAeC0,6021
|
|
8
|
+
devctl/commands/run.py,sha256=2Bg33pl4GPu-oLpFT5BuBQmTtLmsIKwNcDhjHvhfL2o,2259
|
|
9
|
+
devctl/generators/__init__.py,sha256=Wj-CryHTG5PyR8PEv-Z02wvX_qW2n7GVaE1rfwWSFmo,68
|
|
10
|
+
devctl/generators/angular.py,sha256=L9Pa3LuopNcKqI7EfuRnNi2kxa3F9c50GqKrraKeTas,4117
|
|
11
|
+
devctl/generators/django.py,sha256=MQcPbjEhw9afI4kYAiyJIirElG5vOgGfr5MA3qbmT7w,2082
|
|
12
|
+
devctl/generators/docker_scaffold.py,sha256=nJT1jpcabQErnDrQ559-ICkGUl8hLeenmiq28Fic1RM,22472
|
|
13
|
+
devctl/generators/fastapi.py,sha256=GBJHTAiM0zPKoraP7zosUor7my6hRCxlQwha-r1RPcg,2027
|
|
14
|
+
devctl/generators/go_fiber.py,sha256=6U4ZR60mIncvPnM_OA3BgYe2sIKss4peWkNAVnYlVn0,1590
|
|
15
|
+
devctl/generators/nestjs.py,sha256=4BeVPpzaBam8_S2qPDZZPba8bB8hxg-8CFiN0t7aPQQ,1523
|
|
16
|
+
devctl/generators/nextjs.py,sha256=kA3qw8AZI4Q79Zpf2nwcudMnR6ur6zCXK5xfGyYDhy0,1579
|
|
17
|
+
devctl/generators/nodejs.py,sha256=FUiGeS72Ui6cgjt2hFJYf0-OwWzv8OBmKt712gmsIQc,3204
|
|
18
|
+
devctl/generators/react.py,sha256=tLn2lUPqiB9uRJ7nL9TM6KRUd5X8Y54Tx0CLNCacoLw,1368
|
|
19
|
+
devctl/generators/scaffold_angular.py,sha256=9zwlaEgc5O-DLRCgdf9iO-ilZHwcfQe-AnIJnjR1UkA,5463
|
|
20
|
+
devctl/generators/scaffold_django.py,sha256=1eX8DphpWIQ0tJU0CQnfjfTfqLqg04u4SZCoIl-tYA0,2560
|
|
21
|
+
devctl/generators/scaffold_fastapi.py,sha256=4XUCDxDrzmJ8PZ2qxTILLwfkIrRtvT5jbl1RERGdxPY,2468
|
|
22
|
+
devctl/generators/scaffold_go.py,sha256=pZ0kFgiM70nYxZM-V5AUArkPnBx47beh5WbhMru07Y8,1934
|
|
23
|
+
devctl/generators/scaffold_nestjs.py,sha256=MgkGZv7UPluz1upN_Z21l6FxckHaS9JMrhGngcQ_0V8,1679
|
|
24
|
+
devctl/generators/scaffold_nextjs.py,sha256=m1swbDkYXq16aVtHUUwwzJGpRsKEL4h2epgmjaCftLg,2318
|
|
25
|
+
devctl/generators/scaffold_nodejs.py,sha256=cUIi875WSHPFxfz3DKwT23CoIsUTFHbirAUmfSYbQKQ,2812
|
|
26
|
+
devctl/generators/scaffold_react.py,sha256=rDgnTqxjE1LQVVNhwUbe7j3CKnFcQDWpZSDQ7q-VINE,2429
|
|
27
|
+
devctl/generators/scaffold_spring.py,sha256=2uWWOPxVUej6iJpu0MfUyNZRI8QTereJXtMerKFx6Jc,5725
|
|
28
|
+
devctl/generators/scaffold_svelte.py,sha256=yuLNXSiL9-GX5XWyH018-FtOKfgKao1IXw0pb3oTGnc,2080
|
|
29
|
+
devctl/generators/scaffold_vue.py,sha256=2mQbWB2-nTTYYyT0uxbVRjyxtyHLrUzlYDXuYEdrEJ8,3508
|
|
30
|
+
devctl/generators/spring.py,sha256=ueLUgS78bS5CxrCiWWmmUQVbEM8jpSnYNV65wAw78yU,8033
|
|
31
|
+
devctl/generators/svelte.py,sha256=j4j4QnhS7LW6xUQLA6y0xZNWX_VDjEQpJZObPARO3dg,1633
|
|
32
|
+
devctl/generators/vue.py,sha256=f9YqMWSL9C7d42xE2SMwZwqllWTffyJyBUmpMPCHswE,3744
|
|
33
|
+
devctl/orchestrator/__init__.py,sha256=guj85FATiYbeQ8K7QnaE09YV_VSVWuwEAie1lLQpgKE,87
|
|
34
|
+
devctl/orchestrator/config_builder.py,sha256=VZzF7vIBCxDIKhOg2QZ3gqUebsND2f3J2EHvYa96J0E,2099
|
|
35
|
+
devctl/orchestrator/runner.py,sha256=UsmLIrKeajX2DnaMsgL04d2IMPbUAd1tzdaAwTKEdLw,7744
|
|
36
|
+
devctl/orchestrator/scanner.py,sha256=b8JtnK0OhZitKzajlIjJJhUsrf5jXVuVW_j08ZOESfo,5677
|
|
37
|
+
devctl/templates/proxy.conf.json.j2,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
+
devctl/templates/angular/config/environment.development.ts.j2,sha256=VoL0vYnyp8c0k9t20ThdW8mZhCq0KdCLP8_onyLjeRc,69
|
|
39
|
+
devctl/templates/angular/config/environment.ts.j2,sha256=rnLcMCwm5FOE5GEIAQmyZyvt9xOrekXGsRzgfCJOPhY,155
|
|
40
|
+
devctl/templates/angular/config/proxy.conf.json.j2,sha256=yjJuY-9CYGuBbPIuo0B3DuYn5AAMOaEN8YfJJei_0e4,129
|
|
41
|
+
devctl/templates/angular/feature/routes.ts.j2,sha256=Kyk-pbDaYsx_bg-asK8dZxfbqpHV0ss7P35u8VbiQSM,545
|
|
42
|
+
devctl/templates/angular/feature/models/request.model.ts.j2,sha256=3DAAgyb3MLQekqDNVIs3CVgj5nXiS0hneQSvHeuwmHU,125
|
|
43
|
+
devctl/templates/angular/feature/models/response.model.ts.j2,sha256=mhAHeUS9CwOs7fLFJ7OOVByPGgyAvWKeDUdNeVlm9qs,140
|
|
44
|
+
devctl/templates/angular/feature/pages/form/form.component.html.j2,sha256=ATv-4Rr_88aDA4hfbKqM7I1PH10Z-z6Hee_yn1M636I,721
|
|
45
|
+
devctl/templates/angular/feature/pages/form/form.component.scss.j2,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
46
|
+
devctl/templates/angular/feature/pages/form/form.component.ts.j2,sha256=b5_ChVnBfDyTQmdgckuWew5WvbvnVCgphaYUgsllWXw,2054
|
|
47
|
+
devctl/templates/angular/feature/pages/list/list.component.html.j2,sha256=3iunUKd70vYuL4UDOtOGVzBde6vC7ICM5KE6S7gvtu0,741
|
|
48
|
+
devctl/templates/angular/feature/pages/list/list.component.scss.j2,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
|
+
devctl/templates/angular/feature/pages/list/list.component.ts.j2,sha256=VIITZGPjiPBYHcsD4EfsBNvCZN108aAjE9K1IzfZkYo,1174
|
|
50
|
+
devctl/templates/angular/feature/services/service.ts.j2,sha256=RoctNPKlZs2dhCTPOICMvsdeqC3cm0ryPM6LxPWBKxM,1324
|
|
51
|
+
devctl/templates/docker/deploy.yml.j2,sha256=8XPI6GvMXoBh35HM4Imtq-Sqeh2TB4jX-cmRbQ4PWno,1071
|
|
52
|
+
devctl/templates/docker/django/Dockerfile.j2,sha256=pI3OiYmOghncAFTeIv0QLR4ABtBy-UunhgS2KOP3CCA,406
|
|
53
|
+
devctl/templates/docker/fastapi/Dockerfile.j2,sha256=B0bBw_eS744-F-TiiAcUt3lelsjkXK8VMMjJsS4ygzc,262
|
|
54
|
+
devctl/templates/docker/frontend/Dockerfile.j2,sha256=5VIg4m3QY1Ui8gw1lDpSBpsuixwIltiRDA52Q0t4pKQ,1223
|
|
55
|
+
devctl/templates/docker/go/Dockerfile.j2,sha256=SQkKGI93Imjsv4jWe0sew_tPae4HxR2pCUNZ_p85wZ4,340
|
|
56
|
+
devctl/templates/docker/nestjs/Dockerfile.j2,sha256=-18j1-woQ6BKeGq_vli5GGgKpCykosGX8VP9GBJd7jg,458
|
|
57
|
+
devctl/templates/docker/nextjs/Dockerfile.j2,sha256=PsPjttqT7Cmtgtz8k8oBCsU_QAot-3gm0hRo4RpjXTk,993
|
|
58
|
+
devctl/templates/docker/nodejs/Dockerfile.j2,sha256=ThwW2MBiOgorhqC-fwEhxn5EGgHl2OfpJ9h5-f_vhtA,429
|
|
59
|
+
devctl/templates/docker/spring/Dockerfile.j2,sha256=bYa_JMoMXBfwTNDilgWIne9STrYaZwCzUzLcIjpZe1g,823
|
|
60
|
+
devctl/templates/docker/svelte/Dockerfile.j2,sha256=aIu3HWfgp9lXErfoTe6cehjZe9cJ93AmlHW1Gv-LzRg,427
|
|
61
|
+
devctl/templates/spring/Controller.java.j2,sha256=kNzkztJvll89fNaOROhvWe6TbKAAjQEJvlFmqZDBp-o,1694
|
|
62
|
+
devctl/templates/spring/Entity.java.j2,sha256=SLgmRTU02MMW29Oo0vhYHkjrG6_s6qV4OEOhve6eH6E,452
|
|
63
|
+
devctl/templates/spring/Repository.java.j2,sha256=prQGQbc0HcFDHzix_GPXDzb75RhxOc3W8tx30qIMnjs,313
|
|
64
|
+
devctl/templates/spring/Service.java.j2,sha256=MeOktzbANCvkMbjJ-Lbz55V0l8M7bC8T2A0mo3J5hJk,628
|
|
65
|
+
devctl/templates/spring/ServiceImpl.java.j2,sha256=eZQcGjqDhzsC53mkn99s8KX2XjAmWdZw3_UQhNg9rzU,2222
|
|
66
|
+
devctl/templates/spring/application.properties.j2,sha256=jT0OSoXyEt7gfTBZXbQe903oNz3G9n4aSuh1_fjIceY,931
|
|
67
|
+
devctl/templates/spring/docker-compose.yml.j2,sha256=V5leSR_nd2OwosxKukIQqVej2-qwoUL3lBjB2SLFr7A,1018
|
|
68
|
+
devctl/templates/spring/config/ApplicationConfig.java.j2,sha256=FUxmOiUsTRedFUD1SmdXfHSF_yi07Yv_vRis6KacXj0,1759
|
|
69
|
+
devctl/templates/spring/config/JwtAuthenticationFilter.java.j2,sha256=co-p0KdtmJbyfoTDVsJmS2QUAo-eUtvarBGhYIvQQpw,2221
|
|
70
|
+
devctl/templates/spring/config/JwtService.java.j2,sha256=21J0cgUw3i0Z9TBIKNUln6o_lNSAaSaRO_R60j4ydLo,2305
|
|
71
|
+
devctl/templates/spring/config/SecurityConfig.java.j2,sha256=83W2GNnovQeyriAn7v2uv2YGERXqZdlpQP6JoFTUKyA,2066
|
|
72
|
+
devctl/templates/spring/dto/Request.java.j2,sha256=EoVg3dHqE63prHr_3DNvNwNC3-qIvJY7y25iEhCafe0,417
|
|
73
|
+
devctl/templates/spring/dto/Response.java.j2,sha256=k1FrU9yqGxlyhvU0slBe53lg-kMor1OxeB713L_8PVg,448
|
|
74
|
+
devctl/templates/spring/mapper/Mapper.java.j2,sha256=1P-J3QkbBfy4i7YEIkWe3e_OrxMQj3gL3qSqqbgqCJo,1116
|
|
75
|
+
devctl/templates/vue/config/App.vue.j2,sha256=019FJ-P2cPAFEO99NtqpYcCpE25mEBapdnW8yB-OmzA,542
|
|
76
|
+
devctl/templates/vue/config/main.ts.j2,sha256=edNelsh0qYHybZZ5UWxKEg24n3PYYR8L3heD4iwUP-E,173
|
|
77
|
+
devctl/templates/vue/config/router.ts.j2,sha256=kna0Ylaw--7ZfGI99VsvJCrGqYc3pEzAzm_MSaoutlk,482
|
|
78
|
+
devctl/templates/vue/config/vite.config.ts.j2,sha256=omvaRcOZb_3yjF7LTukT-CBmbejc5OkE3wuBO3veFXc,307
|
|
79
|
+
devctl/templates/vue/feature/Form.vue.j2,sha256=GDJDSk53rv8kqXyTNbNJB-wy4iA103kX2tPUmtWxjVw,4101
|
|
80
|
+
devctl/templates/vue/feature/List.vue.j2,sha256=tn4anhr29-dMfEEKcgd34DAMt6yTUGeF0W1Ps9eCe3c,3669
|
|
81
|
+
devctl/templates/vue/feature/models.ts.j2,sha256=am0no09-huAe9woUbMwHHPR8yIL94Ll6D_M6k-qlVTs,280
|
|
82
|
+
devctl/templates/vue/feature/routes.ts.j2,sha256=ooUpJZa3E8WsF0ykvAo0KLYdBWFha6uv9z3b4sVKjFY,607
|
|
83
|
+
devctl/templates/vue/feature/service.ts.j2,sha256=jzvkxao3LtaEWI2P_H_I59gUuylVIAyQ-tvEjQHAu8I,1616
|
|
84
|
+
devctl/utils/__init__.py,sha256=5AcLwzYg2itinQGXiW5jd4Z6Lzsjur04dqrBimAnPKE,47
|
|
85
|
+
devctl/utils/dependencies.py,sha256=dtWZ1QquMUkzyiBKyeKepzrlRx228JRG676aEhIBm6I,1196
|
|
86
|
+
devctl/utils/env_loader.py,sha256=Q_n4Iv3hhK9whuayp0SpwDMyzH2eliIjtC3g3l6YvJ0,1700
|
|
87
|
+
devctl-1.0.0.dist-info/licenses/LICENSE,sha256=ejuOzK7v5suPzolNB0qJJZ78UNEG17KV-5vVQR-yMQI,1071
|
|
88
|
+
devctl-1.0.0.dist-info/METADATA,sha256=b2dbFFVV_RKY7rQra_RAwWTNpQZvF9vRHC_TpWcnICM,4233
|
|
89
|
+
devctl-1.0.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
90
|
+
devctl-1.0.0.dist-info/entry_points.txt,sha256=kbeKCy-Jwx7EaubbhJg0ni5f_8VFdrtR1ACnp4QtEWg,44
|
|
91
|
+
devctl-1.0.0.dist-info/top_level.txt,sha256=NrzcRKPiNVlovhxKHBn0ttiP9NWL9obUn9vRxBItB5I,7
|
|
92
|
+
devctl-1.0.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Youssef Fellah
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
devctl
|