Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
simcaq-node
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Harbor Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
simcaq
simcaq-node
Commits
b6ba7bbc
Commit
b6ba7bbc
authored
4 months ago
by
Fernando Gbur dos Santos
Browse files
Options
Downloads
Patches
Plain Diff
[ADD] Trying to solve the API problem
parent
aebf971f
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
docker-compose.yml
+0
-11
0 additions, 11 deletions
docker-compose.yml
entrypoint.sh
+0
-5
0 additions, 5 deletions
entrypoint.sh
gulpfile.template.js
+0
-20
0 additions, 20 deletions
gulpfile.template.js
with
0 additions
and
36 deletions
docker-compose.yml
deleted
100644 → 0
+
0
−
11
View file @
aebf971f
services
:
simcaq-node
:
container_name
:
simcaq-node
build
:
.
ports
:
-
'
3000:3000'
develop
:
watch
:
-
action
:
sync
path
:
.
target
:
/API
This diff is collapsed.
Click to expand it.
entrypoint.sh
deleted
100644 → 0
+
0
−
5
View file @
aebf971f
#!/bin/bash
echo
"Starting simcaq-node"
gulp watch &> /dev/null &
cd
build
NODE_ENV
=
production gulp run
This diff is collapsed.
Click to expand it.
gulpfile.template.js
deleted
100644 → 0
+
0
−
20
View file @
aebf971f
const
gulp
=
require
(
'
gulp
'
);
const
nodemon
=
require
(
'
gulp-nodemon
'
);
gulp
.
task
(
'
run
'
,
()
=>
{
// process.chdir('build');
nodemon
({
script
:
'
server.js
'
,
// tasks: ['watch'],
ignore
:
[
"
test/test.js
"
,
"
gulpfile.babel.js
"
],
ext
:
'
js html json
'
,
env
:
{
'
NODE_ENV
'
:
process
.
env
.
NODE_ENV
}
});
});
gulp
.
task
(
'
default
'
,
()
=>
{
console
.
log
(
"
Não execuatar apenas gulp, execute da forma:
"
);
console
.
log
(
"
\t\t
gulp <task>
"
);
});
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment