Skip to content

Commit

Permalink
starts the julia repo
Browse files Browse the repository at this point in the history
  • Loading branch information
Nowosad committed Sep 18, 2024
0 parents commit 22a2e01
Show file tree
Hide file tree
Showing 21 changed files with 5,096 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.html
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!-- To report issues...
(1) If it's about content -- link to the offending link/section
(2) If it's a about code -- a reproducible example will help
(3) Any other comments/questions/suggestions are welcome
Please remove this message before posting. Thanks!
-->
28 changes: 28 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
on:
push:
branches:
[main]
name: Render
jobs:
bookdown:
name: GH-Pages
runs-on: ubuntu-latest
container: ghcr.io/geocompx/docker:julia
defaults:
run:
shell: bash -l {0}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- name: Render
run: |
quarto render
ls docs
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs
publish_branch: gh-pages
commit_message: 'Deploy commit: ${{ github.event.head_commit.message }}'
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.bash_history
_book
_main.*
*.html
*.pdf
*.utf8.md
!ga.html
libs/

/.quarto/
docs
8 changes: 8 additions & 0 deletions CITATION.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
@book{lovelace_geocomputation_2019,
title = {Geocomputation with {{Python}}},
% isbn = {1-138-30451-4},
abstract = {Book on geographic data with Python.},
publisher = {{CRC Press}},
author = {Dorman, Michael and Graser, Anita and Nowosad, Jakub and Lovelace, Robin},
year = {2024}
}
25 changes: 25 additions & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Contributor Code of Conduct

As contributors and maintainers of this project, we pledge to respect all people who
contribute through reporting issues, posting feature requests, updating documentation,
submitting pull requests or patches, and other activities.

We are committed to making participation in this project a harassment-free experience for
everyone, regardless of level of experience, gender, gender identity and expression,
sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.

Examples of unacceptable behavior by participants include the use of sexual language or
imagery, derogatory comments or personal attacks, trolling, public or private harassment,
insults, or other unprofessional conduct.

Project maintainers have the right and responsibility to remove, edit, or reject comments,
commits, code, wiki edits, issues, and other contributions that are not aligned to this
Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed
from the project team.

Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by
opening an issue or contacting one or more of the project maintainers.

This Code of Conduct is adapted from the Contributor Covenant
(https://www.contributor-covenant.org), version 1.0.0, available at
https://contributor-covenant.org/version/1/0/0/.
Loading

0 comments on commit 22a2e01

Please sign in to comment.