Skip to content

setup web dashboard #62

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 32 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
317ed28
setup web dashboard and add taba-table-compoent and ant-design
darixsamani May 30, 2024
25ae228
Merge branch 'rmqtt:master' into master
darixsamani May 30, 2024
4b2a24e
config tailwindcss
darixsamani Jun 8, 2024
065b34b
instance axios with baseUrl
darixsamani Jun 8, 2024
6adf122
dockerkize web dashboard
darixsamani Jun 8, 2024
5f36dd9
setup all pages application
darixsamani Jun 8, 2024
14744e8
add component
darixsamani Jun 8, 2024
0620b93
write docker compose file
darixsamani Jun 8, 2024
dde7ff2
definied layout website with anddesign layout component
darixsamani Jun 8, 2024
4e7544b
setupe app
darixsamani Jun 8, 2024
193b6f1
setup all routes
darixsamani Jun 8, 2024
3c9f965
imoport taiwindcss
darixsamani Jun 8, 2024
ec931f8
vite configuration
darixsamani Jun 8, 2024
c72a907
chnage headers instance axios
darixsamani Jul 1, 2024
3d58ed2
update http api gateway
darixsamani Jul 1, 2024
da0d13e
definied structure with tabatable componenent in ant design
darixsamani Jul 1, 2024
54a7047
add service http_api_gateway
darixsamani Jul 1, 2024
507ef66
Merge branch 'rmqtt:master' into master
darixsamani Jul 12, 2024
358bf6d
Merge branch 'rmqtt:master' into master
darixsamani Jul 25, 2024
b55b3d7
Merge branch 'rmqtt:master' into master
darixsamani Aug 27, 2024
0561801
Merge branch 'rmqtt:master' into master
darixsamani Jan 16, 2025
96801a3
Merge branch 'rmqtt:master' into master
darixsamani Jun 11, 2025
b0dca39
implement htt api gateway as a reserve proxu for building dashbord
darixsamani Jun 14, 2025
fead06d
create http-api-gateway as reverse proxy
darixsamani Jun 14, 2025
3784f93
Merge branch 'rmqtt:master' into master
darixsamani Jun 21, 2025
76a3ee4
create Dockerfile with uv
darixsamani Jul 3, 2025
33fe17d
delete requirements
darixsamani Jul 3, 2025
7769d06
used uv for package management
darixsamani Jul 3, 2025
d0decbc
Merge branch 'rmqtt:master' into master
darixsamani Jul 12, 2025
bfd0bcf
Merge branch 'rmqtt:master' into master
darixsamani Jul 26, 2025
708421a
Merge branch 'rmqtt:master' into master
darixsamani Jul 30, 2025
d82c53c
Merge branch 'rmqtt:master' into master
darixsamani Aug 8, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
instance axios with baseUrl
  • Loading branch information
darixsamani committed Jun 8, 2024
commit 065b34b626bd0f58c691d7b67d630533c669eb0f
11 changes: 11 additions & 0 deletions web/src/utils/constants.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import axios from "axios";

const API = "http://localhost:6060/api/v1/";

export const axionsInstance = axios.create({
baseURL: API,
headers: {
"Accept": "*/*",
"Content-Type": "application/json; charset=utf-8",
}
})