diff --git a/src/app.ts b/src/app.ts index 20a3e21..5642a3d 100644 --- a/src/app.ts +++ b/src/app.ts @@ -5,6 +5,6 @@ const app = express() app.use(express.json({ limit: '50mb' })) app.use('/', indexRouter) -app.use(express.static(path.join(__dirname, '..', 'Web', 'build'))) +app.use(express.static(path.join(__dirname, '..', 'web', 'build'))) export default app diff --git a/src/routes/index.ts b/src/routes/index.ts index 4d1d11c..3971bcd 100644 --- a/src/routes/index.ts +++ b/src/routes/index.ts @@ -18,7 +18,7 @@ import { getTmpFilesFolderPath } from '../utils' const router = express.Router() router.get('/', async (_, res) => { - res.sendFile(path.join(__dirname, '..', '..', 'Web', 'build', 'index.html')) + res.sendFile(path.join(__dirname, '..', '..', 'web', 'build', 'index.html')) }) router.post('/deploy', async (req, res) => { diff --git a/Web/README.md b/web/README.md similarity index 100% rename from Web/README.md rename to web/README.md diff --git a/Web/package-lock.json b/web/package-lock.json similarity index 100% rename from Web/package-lock.json rename to web/package-lock.json diff --git a/Web/package.json b/web/package.json similarity index 100% rename from Web/package.json rename to web/package.json diff --git a/Web/public/favicon.ico b/web/public/favicon.ico similarity index 100% rename from Web/public/favicon.ico rename to web/public/favicon.ico diff --git a/Web/public/index.html b/web/public/index.html similarity index 100% rename from Web/public/index.html rename to web/public/index.html diff --git a/Web/public/logo-white.png b/web/public/logo-white.png similarity index 100% rename from Web/public/logo-white.png rename to web/public/logo-white.png diff --git a/Web/public/logo.png b/web/public/logo.png similarity index 100% rename from Web/public/logo.png rename to web/public/logo.png diff --git a/Web/public/manifest.json b/web/public/manifest.json similarity index 100% rename from Web/public/manifest.json rename to web/public/manifest.json diff --git a/Web/public/robots.txt b/web/public/robots.txt similarity index 100% rename from Web/public/robots.txt rename to web/public/robots.txt diff --git a/Web/src/App.css b/web/src/App.css similarity index 100% rename from Web/src/App.css rename to web/src/App.css diff --git a/Web/src/App.test.tsx b/web/src/App.test.tsx similarity index 100% rename from Web/src/App.test.tsx rename to web/src/App.test.tsx diff --git a/Web/src/App.tsx b/web/src/App.tsx similarity index 100% rename from Web/src/App.tsx rename to web/src/App.tsx diff --git a/Web/src/components/header.tsx b/web/src/components/header.tsx similarity index 100% rename from Web/src/components/header.tsx rename to web/src/components/header.tsx diff --git a/Web/src/components/home.tsx b/web/src/components/home.tsx similarity index 100% rename from Web/src/components/home.tsx rename to web/src/components/home.tsx diff --git a/Web/src/containers/SASjsDrive/index.tsx b/web/src/containers/SASjsDrive/index.tsx similarity index 100% rename from Web/src/containers/SASjsDrive/index.tsx rename to web/src/containers/SASjsDrive/index.tsx diff --git a/Web/src/containers/SASjsDrive/main.tsx b/web/src/containers/SASjsDrive/main.tsx similarity index 100% rename from Web/src/containers/SASjsDrive/main.tsx rename to web/src/containers/SASjsDrive/main.tsx diff --git a/Web/src/containers/SASjsDrive/sideBar.tsx b/web/src/containers/SASjsDrive/sideBar.tsx similarity index 100% rename from Web/src/containers/SASjsDrive/sideBar.tsx rename to web/src/containers/SASjsDrive/sideBar.tsx diff --git a/Web/src/containers/SASjsStudio/index.tsx b/web/src/containers/SASjsStudio/index.tsx similarity index 100% rename from Web/src/containers/SASjsStudio/index.tsx rename to web/src/containers/SASjsStudio/index.tsx diff --git a/Web/src/index.css b/web/src/index.css similarity index 100% rename from Web/src/index.css rename to web/src/index.css diff --git a/Web/src/index.tsx b/web/src/index.tsx similarity index 100% rename from Web/src/index.tsx rename to web/src/index.tsx diff --git a/Web/src/react-app-env.d.ts b/web/src/react-app-env.d.ts similarity index 100% rename from Web/src/react-app-env.d.ts rename to web/src/react-app-env.d.ts diff --git a/Web/src/reportWebVitals.ts b/web/src/reportWebVitals.ts similarity index 100% rename from Web/src/reportWebVitals.ts rename to web/src/reportWebVitals.ts diff --git a/Web/src/setupTests.ts b/web/src/setupTests.ts similarity index 100% rename from Web/src/setupTests.ts rename to web/src/setupTests.ts diff --git a/Web/src/theme/index.js b/web/src/theme/index.js similarity index 100% rename from Web/src/theme/index.js rename to web/src/theme/index.js diff --git a/Web/src/theme/palette.js b/web/src/theme/palette.js similarity index 100% rename from Web/src/theme/palette.js rename to web/src/theme/palette.js diff --git a/Web/tsconfig.json b/web/tsconfig.json similarity index 100% rename from Web/tsconfig.json rename to web/tsconfig.json