Przeglądaj źródła

rename src folder to app

Richard Köhl 2 lat temu
rodzic
commit
64957d1853

+ 0 - 0
src/application/.gitkeep → app/application/.gitkeep


+ 0 - 0
src/domain/entities/.gitkeep → app/domain/entities/.gitkeep


+ 0 - 0
src/domain/services/.gitkeep → app/domain/services/.gitkeep


+ 0 - 0
src/domain/value_objects/.gitkeep → app/domain/value_objects/.gitkeep


+ 0 - 0
src/infrastructure/.gitkeep → app/infrastructure/.gitkeep


+ 0 - 0
src/main.ts → app/main.ts


+ 6 - 6
deno.jsonc

@@ -1,26 +1,26 @@
 {
   "imports": {
-    "application/": "./src/application/",
-    "domain/": "./src/domain/",
-    "infrastructure/": "./src/infra/",
+    "application/": "./app/application/",
+    "domain/": "./app/domain/",
+    "infrastructure/": "./app/infra/",
 
     "dotenv/": "https://deno.land/std@0.191.0/dotenv/",
     "testing/": "https://deno.land/std@0.191.0/testing/"
   },
   "tasks": {
-    "dev": "/home/koehlric/.deno/bin/deno run --allow-read --allow-env ./src/main.ts",
+    "dev": "/home/koehlric/.deno/bin/deno run --allow-read --allow-env ./app/main.ts",
     "test": "/home/koehlric/.deno/bin/deno test --allow-read --allow-run ./test/test.ts"
   },
   "lint": {
     "files": {
-      "include": ["src/"]
+      "include": ["app/"]
     },
     "rules": {
       "tags": ["recommended"]
     }
   },
   "fmt": {
-    "include": ["src/", "test/"],
+    "include": ["app/", "test/"],
     "useTabs": false,
     "lineWidth": 80,
     "indentWidth": 2,