Skip to content

Commit

Permalink
Merge pull request #49 from Eyevinn/main
Browse files Browse the repository at this point in the history
Features and bugfixes on behalf of SVT
  • Loading branch information
permobergedge authored Jan 22, 2025
2 parents f641e16 + 26184ec commit 26316bf
Show file tree
Hide file tree
Showing 183 changed files with 14,004 additions and 4,591 deletions.
3 changes: 2 additions & 1 deletion .env.sample
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# MongoDB
MONGODB_URI=${MONGODB_URI:-mongodb://api:password@localhost:27017/live-gui}

# Ateliere Live System Controlleer
# Ateliere Live System Controller
LIVE_URL=${LIVE_URL:-https://localhost:8080}
LIVE_CREDENTIALS=${LIVE_CREDENTIALS:-admin:admin}

# This ENV variable disables SSL Verification, use if the above LIVE_URL doesn't have a proper certificate
NODE_TLS_REJECT_UNAUTHORIZED=${NODE_TLS_REJECT_UNAUTHORIZED:-1}

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ https://help.ateliere.com/live/docs/reference/7-0-0/rest_api/

See [CONTRIBUTING](CONTRIBUTING.md)

## Licence
## License

Copyright (C) 2024 Ateliere Creative Technologies

Expand Down
16 changes: 16 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,21 @@ module.exports = {
locales: ['en', 'sv'],
defaultLocale: 'en',
localeDetection: false
},
images: {
minimumCacheTTL: 0
},
async headers() {
return [
{
source: '/(.*)',
headers: [
{
key: 'Permissions-Policy',
value: 'clipboard-write=(self)'
}
]
}
];
}
};
Loading

0 comments on commit 26316bf

Please sign in to comment.