Skip to content
This repository has been archived by the owner on Jun 7, 2024. It is now read-only.

Update Main with Development #34

Open
wants to merge 50 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
d644fb2
fix: old references to ghp
EstebanBorai Aug 30, 2020
af0b9a1
Added new logo
igaray Dec 9, 2020
c2f8b90
Update link to logo in presentation
igaray Dec 9, 2020
48309cc
Update to latest mdbook github action
igaray Dec 9, 2020
50f77d2
Updated gh-pages.yml
igaray Mar 28, 2021
5fffc68
add: yew config
EstebanBorai Sep 30, 2020
a738afa
add: yew config
EstebanBorai Sep 30, 2020
1f43dad
fix: typo
EstebanBorai Oct 2, 2020
97cabe8
chore: project scaffold
EstebanBorai Apr 5, 2021
c41928d
ci: impl github workflows for "deployment", "fmt" and "clippy"
EstebanBorai Apr 5, 2021
0bf2170
feat(tailwind): setup tailwindcss for project
EstebanBorai Apr 14, 2021
a6a8f68
Header
Phosphorus-M Apr 24, 2021
42d1978
Added a background
Phosphorus-M Apr 24, 2021
f46a9e9
feat(tailwind): setup tailwind/postcss to use @apply
EstebanBorai Apr 24, 2021
a62cb48
Merge branch 'development' of https://github.com/rust-lang-ar/rust-la…
Phosphorus-M May 16, 2021
1e1d43a
Added the Header, the Hero and the section with the links
Phosphorus-M May 17, 2021
0e2ff3c
add: svg ferris illustration for hero
palyzambrano May 20, 2021
4598fcc
Merge branch 'development' of https://github.com/rust-lang-ar/rust-la…
Phosphorus-M Jun 6, 2021
4bac0dd
Added section About and Our Projects
Phosphorus-M Jun 7, 2021
f9f9ac1
Little fix to the logo
Phosphorus-M Jun 7, 2021
2cf282b
Fixed join us buttons
Phosphorus-M Jun 7, 2021
16dc22e
Fixed some warnings
Phosphorus-M Jun 7, 2021
c98fe15
Changed the use the components to a multi line
Phosphorus-M Jun 7, 2021
39cd35f
Now we get only the language_text
Phosphorus-M Jun 7, 2021
3e48e4d
Changed the pull request to be like the suggestions
Phosphorus-M Jun 10, 2021
b8ffe7d
Changed the pull request to be like the suggestions
Phosphorus-M Jun 10, 2021
a60f9c3
feat(trunk): setup trunk for development
EstebanBorai Jun 26, 2021
9c47096
chore(trunk): support for Trunk on CI
EstebanBorai Jun 26, 2021
2080aa3
feat: :sparkles: add Index and Router
Phosphorus-M Sep 19, 2021
96b4525
feat: :sparkles: add AboutPage
Phosphorus-M Sep 19, 2021
d73ca59
feat: :sparkles: add Events
Phosphorus-M Sep 19, 2021
5da1133
feat: :sparkles: add Resources
Phosphorus-M Sep 19, 2021
8a24581
refactor: :art: remove some "use" useless
Phosphorus-M Sep 19, 2021
7792be0
refactor: :fire: remove unnecessary lines
Phosphorus-M Sep 19, 2021
05202fb
Merge branch 'Initial-Layout' into development
Phosphorus-M Sep 19, 2021
e14a282
fix: :bug: resolve the problem of building
Phosphorus-M Sep 20, 2021
5ee55bb
refactor: load the fonts in local way
Phosphorus-M Sep 20, 2021
0ae0e81
fix: fix the svg icons
Phosphorus-M Sep 20, 2021
91b6a9f
refactor: :fire: change the router
Phosphorus-M Sep 20, 2021
5a9aa0b
fix: :fire: delete the webpack
Phosphorus-M Sep 20, 2021
7430694
fix: :bug: fix a image in the resource section
Phosphorus-M Sep 20, 2021
195e651
chore: add codeowners file
EstebanBorai Sep 21, 2021
01cb65a
fix: move codeowners to .github dir
EstebanBorai Sep 21, 2021
e9dc731
chore(deps): bump path-parse from 1.0.6 to 1.0.7
dependabot[bot] May 16, 2022
ed9fe9c
feat: `rust-toolchain.toml` file and dependencies update (#26)
EstebanBorai Sep 11, 2022
ffb3d20
chore(deps): bump minimatch from 3.0.4 to 3.1.2 (#27)
dependabot[bot] Nov 11, 2022
497f26a
chore(deps): bump webpack from 5.33.2 to 5.76.1 (#28)
dependabot[bot] Jan 7, 2024
a588099
chore(deps-dev): bump semver from 7.3.5 to 7.5.4 (#30)
dependabot[bot] Jan 7, 2024
478d907
chore(deps-dev): bump postcss from 8.3.6 to 8.4.31 (#29)
dependabot[bot] Jan 7, 2024
11fc811
Fix deps & telegram link (#31)
hernangonzalez Feb 28, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Understand this file here: https://github.blog/2017-07-06-introducing-code-owners/#how-code-owners-work
# Lines starting with '#' are comments.
# Each line is a file pattern followed by one or more owners.

# These owners will be the default owners for everything in the repo.
* @EstebanBorai
37 changes: 37 additions & 0 deletions .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: clippy
on:
pull_request:
push:
branches:
- main

jobs:
clippy:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: clippy

- name: Cache .cargo and target
uses: actions/cache@v2
with:
path: |
~/.cargo
./target
key: ${{ runner.os }}-cargo-clippy-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-clippy-${{ hashFiles('**/Cargo.lock') }}
${{ runner.os }}-cargo-clippy

- name: cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings
39 changes: 39 additions & 0 deletions .github/workflows/fmt.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: fmt
on:
pull_request:
push:
branches:
- main

jobs:
fmt:
name: fmt
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt

- name: Cache .cargo and target
uses: actions/cache@v2
with:
path: |
~/.cargo
./target
key: ${{ runner.os }}-cargo-fmt-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-fmt-${{ hashFiles('**/Cargo.lock') }}
${{ runner.os }}-cargo-fmt

- name: Run fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
42 changes: 20 additions & 22 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
@@ -1,37 +1,35 @@
# This is a basic workflow to help you get started with Actions

name: CI

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
name: Deploy to GitHub Pages
on:
push:
branches: [development]
branches:
- main

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-18.04 # not latest because peaceiris/actions-gh-pages@v3 requires this version
deploy:
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout
uses: actions/checkout@v2

- name: Setup mdBook
uses: peaceiris/[email protected]
- uses: actions-rs/toolchain@v1
with:
mdbook-version: 'latest'
profile: minimal
toolchain: stable
override: true

- name: Install Trunk
run: wget -qO- https://github.com/thedodd/trunk/releases/download/v0.11.0/trunk-x86_64-unknown-linux-gnu.tar.gz | tar -xzf-
# https://github.com/thedodd/trunk#install

- name: Build
run: mdbook build
run: |
yarn
yarn run build

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
uses: JamesIves/github-pages[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./book
publish_branch: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: dist
157 changes: 156 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,156 @@
book
# MacOS
.DS_Store
.AppleDouble
.LSOverride
Icon
._*
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

# Linux
*~
.fuse_hidden*
.directory
.Trash-*
.nfs*

# Windows
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
*.stackdump
[Dd]esktop.ini
$RECYCLE.BIN/
*.cab
*.msi
*.msix
*.msm
*.msp
*.lnk

# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib

# Test binary, built with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# Dependency directories (remove the comment below to include it)
vendor/

# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
dist/

# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip

# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# JavaScript #
##############
node_modules/
bundle

# Golang Builds #
#################
__debug_bin

# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
dist/

# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip

# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# JavaScript #
##############
node_modules/
bundle
yarn-error.log
.vendor-new

# Rust #
########
/target
**/*.rs.bk
Cargo.lock
wasm-pack.log

# Project #
###########
.vscode/
bin/
pkg/
dist/

# Generated by TailwindCSS #
############################
src/styles/tailwind.css
21 changes: 21 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[package]
authors = ["Rust Argentina"]
categories = ["gui", "wasm", "web-programming"]
description = "GitHub Page for Rust Argentina"
edition = "2021"
keywords = ["yew", "wasm", "wasm-bindgen", "web"]
license = "MIT/Apache-2.0"
name = "rust-lang-ar-github-io"
readme = "README.md"
repository = "https://github.com/rust-lang-ar/rust-lang-ar.github.io"
version = "0.1.0"

[dependencies]
anyhow = "1.0.64"
console_error_panic_hook = "0.1.7"
serde = "1.0.144"
serde_json = "1.0.85"
wasm-bindgen = "0.2.82"
wee_alloc = "0.4.5"
yew = "0.18"
yew-router = "0.15.0"
Loading
Loading