Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Frontend
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
383
Merge Requests
66
CI / CD
Security & Compliance
Packages
Analytics
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Commits
ba9aef3f
Commit
ba9aef3f
authored
55 minutes ago
by
Emiliano Balbuena
Browse files
Options
Download
(feat): Change deploy url
parent
b246238e
goal/local-infra
1 merge request
!766
WIP: Local infrastructure provisioner (front)
Pipeline
#115639268
running with stages
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
containers/live-server-compiler/monitor.sh
View file @
ba9aef3f
...
...
@@ -2,4 +2,4 @@
set
-e
cd
/var/www/Minds/front
npx nodemon
-L
--delay
3
--watch
dist
--ignore
dist/server/
--ignore
dist/server.js
--ext
js,css,jpg,png,svg,mp4,webp,webm
--exec
"/usr/bin/env sh"
/build.sh
npx nodemon
-L
--delay
3
--watch
server.ts
--watch
dist
--ignore
dist/server/
--ignore
dist/server.js
--ext
js,css,jpg,png,svg,mp4,webp,webm
--exec
"/usr/bin/env sh"
/build.sh
This diff is collapsed.
package.json
View file @
ba9aef3f
...
...
@@ -10,8 +10,8 @@
"build"
:
"sh build/base-locale.sh dist"
,
"build-dev"
:
"echo 'Deprecated, please use build:dev'; npm run build:dev --"
,
"serve-dev"
:
"echo 'Deprecated, please use serve:ssr'; npm run serve:ssr --"
,
"prebuild:dev"
:
"gulp build.sass --deploy-url=http://localhost:8080/
en/
"
,
"build:dev"
:
"ng build --output-path=dist/en --deploy-url=http://localhost:8080/
en/
--watch=true --poll=800 --aot"
,
"prebuild:dev"
:
"gulp build.sass --deploy-url=http://localhost:8080/"
,
"build:dev"
:
"ng build --output-path=dist/en --deploy-url=http://localhost:8080/ --watch=true --poll=800 --aot"
,
"test"
:
"ng test"
,
"lint"
:
"ng lint"
,
"e2e"
:
"cypress run --debug"
,
...
...
This diff is collapsed.
Please
register
or
sign in
to comment