Simple client build GitOrigin-RevId: d7107104960c97bad7ec1316b5e6720a6c1017b6
17 lines
396 B
Bash
Executable File
17 lines
396 B
Bash
Executable File
#!/bin/bash
|
|
|
|
WEBPACK_ENV=production make minify
|
|
make --no-print-directory format
|
|
make --no-print-directory lint
|
|
npm install git+https://github.com/sharelatex/translations-sharelatex.git#master
|
|
|
|
chmod -R 0755 /app/public
|
|
chown -R node:node /app/public
|
|
|
|
set -B
|
|
|
|
rm -rf /app/data
|
|
mkdir -p /app/data/{dumpFolder,logs,pdf,uploads,zippedProjects}
|
|
chmod -R 0755 /app/data/
|
|
chown -R node:node /app/data/
|