Skip to content

Commit 41164aa

Browse files
committed
lc
1 parent 311fb35 commit 41164aa

File tree

4 files changed

+47
-0
lines changed

4 files changed

+47
-0
lines changed

_config.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Book settings
2+
# Learn more at https://jupyterbook.org/customize/config.html
3+
4+
title: Advanced Computation
5+
author: Diego Restrepo (UdeA)
6+
logo: logo.png
7+
8+
# Force re-execution of notebooks on each build.
9+
# See https://jupyterbook.org/content/execute.html
10+
execute:
11+
execute_notebooks: 'off'
12+
13+
# Define the name of the latex output file for PDF builds
14+
latex:
15+
latex_documents:
16+
targetname: book.tex
17+
18+
# Add a bibtex file so that we can create citations
19+
bibtex_bibfiles:
20+
- references.bib
21+
22+
# Information about where the book exists on the web
23+
repository:
24+
url: https://github.com/restrepo/Advanced_Computation # Online location of your book
25+
path_to_book: docs # Optional path to your book, relative to the repository root
26+
branch: master # Which branch of the repository should be used when creating links (optional)
27+
28+
# Add GitHub buttons to your book
29+
# See https://jupyterbook.org/customize/config.html#add-a-link-to-your-repository
30+
html:
31+
use_issues_button: true
32+
use_repository_button: true

_toc.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Table of contents
2+
# Learn more at https://jupyterbook.org/customize/toc.html
3+
4+
format: jb-book
5+
root: intro
6+
chapters:
7+
- file: Multiprocessing
8+
- file: DevOps
9+
- file: Data_Analysis
10+
- file: Intro_clases
11+
- file: fullstack
12+
- file: markdown-notebooks
13+

build_book.sh

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
jupyter-book build --all $(pwd)

push_build.sh

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ghp-import -n -p -f _build/html

0 commit comments

Comments
 (0)