This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="p-10 bg-white" id={@repo.id}> | |
<div class="flex space-x-3"> | |
<img src={@repo.avatar_url} alt="" class="h-50 w-50 rounded-full"> | |
<div class="flex-1 space-y-1"> | |
<div class="pt-10 flex items-center justify-between"> | |
<p class="text-gray-900"> | |
<strong>Language: </strong> | |
</p> | |
<p><%= @repo.language %></p> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# VSCode | |
Plugins: | |
- [ ] (https://marketplace.visualstudio.com/items?itemName=HookyQR.beautify)[Beautify] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"terminal.integrated.automationShell.osx": "", | |
"editor.fontFamily": "FiraCode-Retina", | |
"emmet.includeLanguages": { | |
"html-eex": "html" | |
}, | |
"files.associations": { | |
"*.eex": "html-eex", | |
"*.leex": "html-eex" | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo: required | |
language: elixir | |
elixir: | |
- 1.10 | |
opt_release: | |
- 22.2.6 | |
addons: | |
postgres: "9.4" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo: required | |
language: elixir | |
elixir: | |
- '1.10' | |
opt_release: '22.2.6' | |
addons: | |
postgres: "9.4" | |
services: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: push | |
env: | |
SECRET_KEY_BASE: "KrVbpnTx/SBlnJkq/IQ+dK+OWP2dUkS98sk1y9l5+okoCU2N/kCJ2PNY1T6CS7/I" | |
AUTH0_CLIENT_ID: "" | |
AUTH0_CLIENT_SECRET: "" | |
HOST: "localhost" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy GKE | |
on: | |
push: | |
branches: | |
- main | |
env: | |
PROJECT_ID: ${{ secrets.GKE_PROJECT }} | |
GKE_CLUSTER: ${{ secrets.GKE_CLUSTER }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
name: Build and Deploy a Container | |
env: | |
PROJECT_ID: ${{ secrets.GCP_PROJECT }} | |
SERVICE: rushing | |
REGION: us-central1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CD | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
if: github.ref == 'refs/heads/main' # Only run this job if it is on the main branch | |
runs-on: ubuntu-latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: pull_request | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: erlef/setup-elixir@885971a72ed1f9240973bd92ab57af8c1aa68f24 |