Skip to content

Commit

Permalink
Merge pull request #56 from terasakisatoshi/prepare-release-v0.9.0
Browse files Browse the repository at this point in the history
Prepare release v0.9.0
  • Loading branch information
terasakisatoshi authored Apr 18, 2020
2 parents c45e2e6 + 6cc36d9 commit 4d6e3c1
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 17 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MyWorkflow"
uuid = "7abf360e-92cb-4f35-becd-441c2614658a"
authors = ["Satoshi Terasaki <[email protected]>"]
version = "0.8.0"
version = "0.9.0"

[deps]
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581"
Expand Down
37 changes: 21 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://terasakisatoshi.github.io/MyWorkflow.jl/dev)

- dev (master) [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/terasakisatoshi/MyWorkflow.jl/master)
- stable (v0.8.0) [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/terasakisatoshi/MyWorkflow.jl/v0.8.0)
- stable (v0.9.0) [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/terasakisatoshi/MyWorkflow.jl/v0.9.0)

- An example of workflow using Docker and GitHub Actions

Expand All @@ -21,14 +21,16 @@

# Directory Structure

```
```console
$ tree
.
├── Dockerfile
├── LICENSE
├── Makefile
├── Project.toml
├── README.md
├── binder
│   └── Dockerfile
├── docker-compose.yml
├── docs
│   ├── Manifest.toml
Expand All @@ -44,19 +46,21 @@ $ tree
│   └── weavesample.jmd
├── experiments
│   └── notebook
│   ├── box_and_ball_system.jl
│   ├── coordinate_system.jl
│   ├── curved_surface.jl
│   ├── curve.jl
│   ├── example.jl.jl
│   ├── interact_sample.jl
│   ├── n-Soliton.jl
│   ├── plotly_surface.jl
│   ├── plots_sample.jl
│   └── tangent_space.jl
│   ├── tangent_space.jl
│   └── tangent_vector.jl
├── requirements.txt
├── src
│   └── MyWorkflow.jl
└── test
└── runtests.jl
7 directories, 25 files
```

Expand All @@ -76,7 +80,7 @@ $ tree
### Case 1: Use Docker

```console
$ docker build -t myjulia .
$ docker build -t jlatom .
```

### Case 2: Use Docker Compose
Expand All @@ -100,13 +104,14 @@ $ make build
#### Initialize Julia via REPL.

```console
$ docker run --rm -it myjulia julia --project=.
$ docker run --rm -it jlatom julia
_
_
_ _ _(_)_ | Documentation: https://docs.julialang.org
(_) | (_) (_) |
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.3.0 (2019-11-26)
| | |_| | | | (_| | | Version 1.4.0 (2020-03-21)
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
|__/ |

Expand All @@ -119,7 +124,7 @@ julia> hello("World")
#### Initialize Julia via Jupyter Notebook

```console
$ docker run --rm -v $PWD:/work -w /work -p 8888:8888 --name myjupyter myjulia jupyter notebook --ip=0.0.0.0 --allow-root
$ docker run --rm -v $PWD:/work -w /work -p 8888:8888 --name jlatom jlatom jupyter notebook --ip=0.0.0.0 --allow-root
... some stuff happens
```

Expand All @@ -131,13 +136,13 @@ Open your web browser and access http://localhost:8000/

```console
$ docker-compose run --rm julia
_
_ _ _(_)_ | Documentation: https://docs.julialang.org
(_) | (_) (_) |
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.3.0 (2019-11-26)
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
_
_ _ _(_)_ | Documentation: https://docs.julialang.org
(_) | (_) (_) |
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.4.0 (2020-03-21)
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
|__/ |

julia> using Example
Expand Down

0 comments on commit 4d6e3c1

Please sign in to comment.