preparing first release
Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
27
README.md
Normal file
27
README.md
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
# Umbrella 25
|
||||||
|
|
||||||
|
…eine Neuimplementierung von Umbrella mittels JAVA.
|
||||||
|
|
||||||
|
## Module
|
||||||
|
…und deren Status…
|
||||||
|
|
||||||
|
| Modulname | Status |
|
||||||
|
|-----------|---------------------|
|
||||||
|
| bookmark | portiert |
|
||||||
|
| company | portiert |
|
||||||
|
| contact | nicht portiert |
|
||||||
|
| document | portiert |
|
||||||
|
| files | nicht portiert |
|
||||||
|
| item | nicht portiert |
|
||||||
|
| logging | nicht implementiert |
|
||||||
|
| mindmap | nicht implementiert |
|
||||||
|
| model | nicht portiert |
|
||||||
|
| notes | portiert |
|
||||||
|
| poll | nicht portiert |
|
||||||
|
| project | portiert |
|
||||||
|
| rtc | nicht implementiert |
|
||||||
|
| stock | nicht portiert |
|
||||||
|
| task | portiert |
|
||||||
|
| time | nicht portiert |
|
||||||
|
| user | portiert |
|
||||||
|
| wiki | nicht portiert |
|
||||||
@@ -2,7 +2,9 @@ default: devel
|
|||||||
|
|
||||||
build: image
|
build: image
|
||||||
docker run --name svelte-build \
|
docker run --name svelte-build \
|
||||||
-d svelte
|
--rm \
|
||||||
|
-v ../frontend:/home/svelte/frontend \
|
||||||
|
-ti svelte /opt/svelte-build
|
||||||
image:
|
image:
|
||||||
docker build -t svelte .
|
docker build -t svelte .
|
||||||
|
|
||||||
|
|||||||
11
Svelte/script/svelte-build
Executable file
11
Svelte/script/svelte-build
Executable file
@@ -0,0 +1,11 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ ! -f "/home/svelte/frontend/vite.config.js" ]; then
|
||||||
|
npm create -y vite@6 frontend -- --template svelte
|
||||||
|
else
|
||||||
|
echo Svelte-Project recognized, starting…
|
||||||
|
fi
|
||||||
|
cd frontend
|
||||||
|
npm install
|
||||||
|
|
||||||
|
npm run build
|
||||||
Reference in New Issue
Block a user