Skip to content

Commit f04ecc1

Browse files
committed
Merge branch 'develop' of https://github.com/atlp-rwanda/atlp-pulse-fn into develop
2 parents 472b0a1 + 48e9136 commit f04ecc1

File tree

265 files changed

+16649
-6641
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

265 files changed

+16649
-6641
lines changed

.eslintrc

+3-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"sourceType": "module"
2020
},
2121
"plugins": ["react", "@typescript-eslint"],
22-
"ignorePatterns": ["/root/webpack.config.js"],
22+
"ignorePatterns": ["/root/vite.config.ts"],
2323
"rules": {
2424
"no-console": ["error"],
2525
"import/extensions": "off",
@@ -41,6 +41,7 @@
4141
"no-shadow": 0,
4242
"no-unused-expressions": 0,
4343
"react/require-default-props": 0,
44-
"import/prefer-default-export": 0
44+
"import/prefer-default-export": 0,
45+
"react/no-unstable-nested-components": 0
4546
}
4647
}
File renamed without changes.

beta_.conf

-9
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,11 @@ server {
22
listen 80;
33
server_name localhost;
44

5-
set $WS_BACKEND_URL ws://localhost:4000;
6-
75
location / {
86
root /usr/share/nginx/html;
97
index index.html index.htm;
108
try_files $uri /index.html;
119
}
12-
location /ws {
13-
proxy_pass $WS_BACKEND_URL;
14-
proxy_http_version 1.1;
15-
proxy_set_header Upgrade $http_upgrade;
16-
proxy_set_header Connection "Upgrade";
17-
proxy_read_timeout 86400;
18-
}
1910

2011
error_page 500 502 503 504 /50x.html;
2112
location = /50x.html {

index.html

+9-4
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,14 @@
4141
rel="stylesheet"
4242
/> -->
4343

44-
<link href="https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&display=swap" rel="stylesheet">
45-
44+
<link
45+
href="https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&display=swap"
46+
rel="stylesheet"
47+
/>
4648
</head>
4749
<body class="dark:bg-dark-frame-bg">
4850
<div id="tree"></div>
51+
<script type="module" src="/src/index.tsx"></script>
4952
</body>
5053
</html>
5154
<!DOCTYPE html>
@@ -90,8 +93,10 @@
9093
href="https://fonts.googleapis.com/css2?family=Inria+Serif:ital@1&family=Lexend+Deca:wght@600&family=Open+Sans:wght@300;400;600;700;800&display=swap"
9194
rel="stylesheet"
9295
/> -->
93-
<link href="https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&display=swap" rel="stylesheet">
94-
96+
<link
97+
href="https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&display=swap"
98+
rel="stylesheet"
99+
/>
95100
</head>
96101
<body>
97102
<div id="tree"></div>

jest.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* eslint-disable no-dupe-keys */
22
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
3-
module.exports = {
3+
export default {
44
preset: 'ts-jest',
55
testEnvironment: 'jsdom',
66
verbose: true,

0 commit comments

Comments
 (0)