mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
* initial work * shared link created through API * add tests for share file on all list views * remove utc for end of day * remove hours and minutes * update unit test * workaround * update docker settings for tomcat * tomcat setup for e2e
14 lines
336 B
Bash
Executable File
14 lines
336 B
Bash
Executable File
npm run build -- --base-href ./
|
|
|
|
node -e "
|
|
const fs = require('fs');
|
|
const config = require('./dist/app/app.config.json');
|
|
config.baseShareUrl = 'http://localhost:4000/content-app';
|
|
fs.writeFileSync(
|
|
'./dist/app/app.config.json',
|
|
JSON.stringify(config, null, 2)
|
|
);
|
|
"
|
|
|
|
jar -cvf docker/tomcat/artifacts/content-app.war -C dist/app/ .
|