Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
purescript-gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Grégoire Locqueville
purescript-gargantext
Commits
ed0ada62
Unverified
Commit
ed0ada62
authored
Mar 18, 2019
by
Nicolas Pouillard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simple script for a docker environement
parent
e85e010f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
62 additions
and
0 deletions
+62
-0
docker-env.sh
docker-env.sh
+62
-0
No files found.
docker-env.sh
0 → 100644
View file @
ed0ada62
#!/bin/sh
# README
#
# You can source this file and use the commands defined below:
#
# . ./docker-env.sh
# setup
# dev
dockerrun
(){
P
=
/app/node_modules/.bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
sudo
docker run
-u
"
$UID
"
-e
PATH
=
"
$P
"
-v
$PWD
:/app
-w
/app
"
$@
"
}
unalias
npm yarn bower pulp repl &>/dev/null
||
:
unset
npm yarn bower pulp repl &>/dev/null
||
:
npm
(){
dockerrun node npm
"
$@
"
}
yarn
(){
dockerrun node yarn
"
$@
"
}
bower
(){
dockerrun node bower
"
$@
"
}
dependencies
(){
dockerrun node psc-dependencies
"
$@
"
}
package
(){
dockerrun node psc-package
"
$@
"
}
pulp
(){
dockerrun node pulp
"
$@
"
}
repl
(){
dockerrun
-ti
node pulp repl
"
$@
"
}
setup
(){
yarn
install
&&
bower
install
}
build
(){
pulp
--psc-package
browserify
--to
dist/bundle.js
}
serve
(){
dockerrun node http-server
-p
2015
--cors
dist
}
dev
(){
build
&&
serve
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment