Compare commits
8 Commits
develop/de
...
17080edb40
Author | SHA1 | Date | |
---|---|---|---|
![]() |
17080edb40 | ||
![]() |
17249dee44 | ||
![]() |
bd7e6dd9e0 | ||
![]() |
87ccb2f1ff | ||
![]() |
46f784d587 | ||
![]() |
66b9bf5bdd | ||
![]() |
35b1cd1eba | ||
![]() |
4de7a564e3 |
9
01_Requirements/REQ0181/index.md
Normal file
9
01_Requirements/REQ0181/index.md
Normal file
@@ -0,0 +1,9 @@
|
||||
---
|
||||
tags: frontend, side-menu
|
||||
---
|
||||
|
||||
# REQ0181 frontend side menu configuration
|
||||
|
||||
## sources
|
||||
|
||||
`src/layouts/nav-config-dashboard.tsx`
|
11
01_Requirements/REQ0182/index.md
Normal file
11
01_Requirements/REQ0182/index.md
Normal file
@@ -0,0 +1,11 @@
|
||||
---
|
||||
tags: frontend, product, details
|
||||
---
|
||||
|
||||
# REQ0182 frontend product details
|
||||
|
||||
frontend page to display product details
|
||||
|
||||
## sources
|
||||
|
||||
T.B.A.
|
15
01_Requirements/REQ0183/index.md
Normal file
15
01_Requirements/REQ0183/index.md
Normal file
@@ -0,0 +1,15 @@
|
||||
---
|
||||
tags: frontend, product, new
|
||||
---
|
||||
|
||||
# REQ0183 frontend product new
|
||||
|
||||
frontend page to create new product
|
||||
|
||||
## sources
|
||||
|
||||
T.B.A.
|
||||
|
||||
## branch
|
||||
|
||||
develop/requirements/REQ0183
|
17
01_Requirements/REQ0184/index.md
Normal file
17
01_Requirements/REQ0184/index.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
tags: frontend, product, delete
|
||||
---
|
||||
|
||||
# REQ0184 frontend product delete
|
||||
|
||||
frontend page to delete product
|
||||
|
||||
list page
|
||||
|
||||
## sources
|
||||
|
||||
T.B.A.
|
||||
|
||||
## branch
|
||||
|
||||
develop/requirements/REQ0184
|
17
01_Requirements/REQ0185/index.md
Normal file
17
01_Requirements/REQ0185/index.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
tags: frontend, product, update
|
||||
---
|
||||
|
||||
# REQ0185 frontend product update
|
||||
|
||||
frontend page to update product
|
||||
|
||||
edit page T.B.A.
|
||||
|
||||
## sources
|
||||
|
||||
T.B.A.
|
||||
|
||||
## branch
|
||||
|
||||
develop/requirements/REQ0185
|
@@ -158,3 +158,8 @@
|
||||
- [REQ0169: DemoStorageExample](./REQ0169/index.md)
|
||||
- [REQ0170: DemoWeatherAppUi](./REQ0170/index.md)
|
||||
- [REQ0180: REQ0180 service port schedule](./REQ0180/index.md)
|
||||
- [REQ0181: REQ0181 frontend side menu configuration](./REQ0181/index.md)
|
||||
- [REQ0182: REQ0182 frontend product details](./REQ0182/index.md)
|
||||
- [REQ0183: REQ0183 frontend product new](./REQ0183/index.md)
|
||||
- [REQ0184: REQ0184 frontend product delete](./REQ0184/index.md)
|
||||
- [REQ0185: REQ0185 frontend product update](./REQ0185/index.md)
|
||||
|
@@ -1,4 +1,4 @@
|
||||
#!/usr/bin/env zsh
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -x
|
||||
|
||||
|
@@ -1,14 +1,23 @@
|
||||
#
|
||||
# REQ0180 service port schedule
|
||||
#
|
||||
services:
|
||||
frontend:
|
||||
command: 'sleep infinity'
|
||||
command: "sleep infinity"
|
||||
ports:
|
||||
- 8080:8080
|
||||
|
||||
mobile:
|
||||
command: 'sleep infinity'
|
||||
command: "sleep infinity"
|
||||
ports:
|
||||
- 3000:3000
|
||||
|
||||
cms_backend:
|
||||
command: 'sleep infinity'
|
||||
command: "sleep infinity"
|
||||
ports:
|
||||
- 7272:7272
|
||||
- 5555:5555
|
||||
|
||||
postgres:
|
||||
# container_name: postgres
|
||||
ports:
|
||||
- '5432:5432'
|
||||
- 5432:5432
|
||||
|
@@ -1,3 +1,6 @@
|
||||
#
|
||||
# REQ0180 service port schedule
|
||||
#
|
||||
volumes:
|
||||
db:
|
||||
driver: local
|
||||
|
@@ -31,8 +31,16 @@ export default defineConfig({
|
||||
},
|
||||
],
|
||||
},
|
||||
server: { port: PORT, host: true },
|
||||
preview: { port: PORT, host: true },
|
||||
server: {
|
||||
port: PORT,
|
||||
host: true,
|
||||
allowedHosts: ['pa_admin.louislabs.com', 'localhost'],
|
||||
},
|
||||
preview: {
|
||||
port: PORT,
|
||||
host: true,
|
||||
allowedHosts: ['pa_admin.louislabs.com', 'localhost'],
|
||||
},
|
||||
build: {
|
||||
sourcemap: true,
|
||||
},
|
||||
|
@@ -1,4 +1,4 @@
|
||||
#!/usr/bin/env zsh
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -x
|
||||
|
||||
|
Reference in New Issue
Block a user