fix: skip backgound requests for atlantis secrets sync

This commit is contained in:
2025-06-20 10:10:21 +02:00
parent efd7b6e6c1
commit 207c7abd8a
84 changed files with 6 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
# Oceanbox IdP
```
npm install && npm start
```
Other commands:
```bash
npm test # Run tests
npm run test:watch # Run tests in watch mode
npm test -- --update-snapshots # Update test snapshots
npm run build # Build optimized site for deployment and put in dist/
```
## Vite.js repository structure conventions
- Put static files in `public/` folder
- Put `index.html` in app root (next to `package.json`)
- Add a reference to the entry JS file (relative path is important):
```html
<script type="module" src="./build/client/App.js"></script>
```