Skip to content

Commit

Permalink
Deploy github-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
grupyblumenau committed Jul 5, 2023
0 parents commit eda5b8f
Show file tree
Hide file tree
Showing 205 changed files with 27,727 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
blumenau.sc.python.org.br
grupybnu.sc.python.org.br
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Copyright (c) 2019 WowThemes.net
License: MIT

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
15 changes: 15 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
setup:
gem install bundler --user-install
bundle install

run:
bundle exec jekyll serve

deploy:
bundle install
bundle exec jekyll build
cd ./_site && git init
cd ./_site && git config user.name "Travis CI"
cd ./_site && git add . && git commit -m "Deploy github-pages"
cd ./_site && git remote add origin [email protected]:rtancman/rtancman.github.io.git
cd ./_site && git push origin master -f
42 changes: 42 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# pythonbnu.github.io
[![Build Status](https://travis-ci.org/blumenaujs/blumenaujs.github.io.svg?branch=jekyll)](https://travis-ci.org/pythonbnu/pythonbnu.github.io)

Este repositório contém o site da comunidade GruPy Blumenau. Sinta-se livre para forkar e colaborar \o/


Neste projeto temos as seguintes sessões:

- [Home Page](https://pythonbnu.github.io/)
- [Comunidade](https://pythonbnu.github.io/comunidade)
- [Encontros](https://pythonbnu.github.io/encontros)
- [Empresas](https://pythonbnu.github.io/empresas)
- [Blog](https://pythonbnu.github.io/blog)


## Contribuindo com o site

### Como desenvolver?

Instale o [Git](http://git-scm.com/downloads) e [Ruby](http://www.ruby-lang.org/pt/downloads/), caso você ainda não tenha em sua maquina. Agora siga os passos abaixo:

1. Faça um fork desse repositório
2. Clone o repositório.
3. Instale as dependências
4. Rode o projeto

```console
git clone [email protected]:SEU_USUARIO_DO_GUTHUB/pythonbnu.github.io.git
cd pythonbnu.github.io
make setup
make run
```

Após finalizar as melhorias e garantir que tudo esteja funcionando faça um Pull request para o branch jekyll ;)

### Como fazer o deploy?

Este projeto esta configurado com o TravisCI fazendo um push no branch jekyll inicia o processo de build.


## Mantenedores
- [@rtancman](https://github.com/rtancman)
Loading

0 comments on commit eda5b8f

Please sign in to comment.