Skip to content

Commit 1ccae6e

Browse files
committed
Added NestedRepo as a submodule
0 parents  commit 1ccae6e

23 files changed

+4423
-0
lines changed

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "file-upload-react"]
2+
path = file-upload-react
3+
url = git@github-yu:YSHgroup/file-upload-react.git

client

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit f96799320cf4dfe032585d95d6d617ca2700322a

file-upload-react

Submodule file-upload-react added at f967993
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"presets": ["@babel/preset-env"]
3+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Reference
2+
3+
```bash
4+
npm init
5+
npm install express cors dotenv
6+
npm install -D typescript ts-node-dev @types/express @types/cors
7+
npx tsc --init
8+
npm install nodemon
9+
npm install --save-dev @babel/core @babel/preset-env
10+
npx babel src --out-dir dist
11+
npm install --save-dev tsconfig-paths
12+
13+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"watch": ["src"],
3+
"ext": ".ts,.js,.yaml",
4+
"ignore": [],
5+
"exec": "ts-node -r tsconfig-paths/register"
6+
}

0 commit comments

Comments
 (0)