Skip to content

Commit 26316bf

Browse files
Merge pull request #49 from Eyevinn/main
Features and bugfixes on behalf of SVT
2 parents f641e16 + 26184ec commit 26316bf

File tree

183 files changed

+14004
-4591
lines changed

Some content is hidden

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

183 files changed

+14004
-4591
lines changed

.env.sample

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# MongoDB
22
MONGODB_URI=${MONGODB_URI:-mongodb://api:password@localhost:27017/live-gui}
33

4-
# Ateliere Live System Controlleer
4+
# Ateliere Live System Controller
55
LIVE_URL=${LIVE_URL:-https://localhost:8080}
66
LIVE_CREDENTIALS=${LIVE_CREDENTIALS:-admin:admin}
7+
78
# This ENV variable disables SSL Verification, use if the above LIVE_URL doesn't have a proper certificate
89
NODE_TLS_REJECT_UNAUTHORIZED=${NODE_TLS_REJECT_UNAUTHORIZED:-1}
910

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ https://help.ateliere.com/live/docs/reference/7-0-0/rest_api/
7070

7171
See [CONTRIBUTING](CONTRIBUTING.md)
7272

73-
## Licence
73+
## License
7474

7575
Copyright (C) 2024 Ateliere Creative Technologies
7676

next.config.js

+16
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,21 @@ module.exports = {
99
locales: ['en', 'sv'],
1010
defaultLocale: 'en',
1111
localeDetection: false
12+
},
13+
images: {
14+
minimumCacheTTL: 0
15+
},
16+
async headers() {
17+
return [
18+
{
19+
source: '/(.*)',
20+
headers: [
21+
{
22+
key: 'Permissions-Policy',
23+
value: 'clipboard-write=(self)'
24+
}
25+
]
26+
}
27+
];
1228
}
1329
};

0 commit comments

Comments
 (0)