Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
awesome-segmenter
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Murat Ambarkutuk
awesome-segmenter
Commits
2a933d0e
Commit
2a933d0e
authored
11 months ago
by
Murat Ambarkutuk
Browse files
Options
Downloads
Patches
Plain Diff
add build option to the makefile and change the workspace name
parent
ba3bd6a8
1 merge request
!2
Develop the main algorithm backbone
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Makefile
+6
-2
6 additions, 2 deletions
Makefile
unsupervised-segmentation.code-workspace
+74
-0
74 additions, 0 deletions
unsupervised-segmentation.code-workspace
with
80 additions
and
2 deletions
Makefile
+
6
−
2
View file @
2a933d0e
...
@@ -2,7 +2,7 @@ SHELL=/bin/bash
...
@@ -2,7 +2,7 @@ SHELL=/bin/bash
env_file
=
.env
env_file
=
.env
include
${env_file}
include
${env_file}
.PHONY
:
clean up down restart stop reload ps logs logsf push env
.PHONY
:
build
clean up down restart stop reload ps logs logsf push env
all
:
reload
all
:
reload
...
@@ -10,7 +10,11 @@ default: all
...
@@ -10,7 +10,11 @@ default: all
unsupervised-segmentation
:
unsupervised-segmentation
:
docker
exec
-it
$@
bash
docker
exec
-it
$@
bash
build
:
@
echo
"Starting to build"
docker-compose build
clean
:
pyclean prune
clean
:
pyclean prune
up
:
up
:
...
...
This diff is collapsed.
Click to expand it.
unsupervised-segmentation.code-workspace
0 → 100644
+
74
−
0
View file @
2a933d0e
{
"folders": [
{
"path": "."
}
],
"settings": {
"terminal.integrated.gpuAcceleration": "off",
"editor.wordWrap": "on",
"latex-workshop.latex.recipe.default": "lastUsed",
"latex-workshop.latex.autoBuild.run": "never",
"latex-workshop.latex.recipes": [
{
"name": "magic 🐟",
"tools": [
"pdflatex",
"bibtex",
"pdflatex",
"makeglossaries",
// "makeindex",
"pdflatex"
]
}
],
"files.associations": {
"*.tikz": "latex",
"*.table": "latex",
"*.figure": "latex"
},
"latex-workshop.latex.tools": [
{
"name": "makeindex",
"command": "makeindex",
"args": [
"%DOCFILE%.nlo",
"-s",
"nomencl.ist",
"-o",
"%DOCFILE%.nls"
]
},
{
"name": "pdflatex",
"command": "pdflatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
],
"env": {}
},
{
"name": "bibtex",
"command": "bibtex",
"args": [
"%DOCFILE%"
],
"env": {}
},
{
"name": "makeglossaries",
"command": "makeglossaries",
"args": [
"%DOCFILE%"
]
}
],
},
"tasks": {
"version": "2.0.0",
"tasks": []
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
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