Skip to content

Instantly share code, notes, and snippets.

@pdrok
Last active April 22, 2024 19:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pdrok/1073fced420873cd0866c478fe10ffc6 to your computer and use it in GitHub Desktop.
Save pdrok/1073fced420873cd0866c478fe10ffc6 to your computer and use it in GitHub Desktop.

flisol2024

Estos son los materiales que he utilizado para la preparacion de la charla:

Presentación:

https://docs.google.com/presentation/d/1KwIob_SRC-B3Nx1n6UQiEMFaC7GhidmSKPn3I4cA6JE/edit?usp=sharing

Introduccion:

https://www.knopper.net/knoppix/index-en.html

https://canonical.com/blog/shipit-comes-to-an-end

https://www.squid-cache.org/

https://www.ispconfig.org/

https://roundcube.net/

Git:

https://www.atlassian.com/git/tutorials/install-git

https://about.gitea.com/

https://docs.gitea.com/installation/install-with-docker

https://training.github.com/downloads/es_ES/github-git-cheat-sheet.pdf

https://www.atlassian.com/git/glossary#commands

https://ohmyz.sh/

https://www.youtube.com/watch?v=idLyobOhtO4

https://www.freecodecamp.org/news/ssh-keygen-how-to-generate-an-ssh-public-key-for-rsa-login/

Docker:

https://docs.docker.com/engine/install/ubuntu/

https://github.com/jesseduffield/lazydocker

https://kodekloud.com/blog/eof-bash/

VSCode

https://code.visualstudio.com/Download

https://github.com/microsoft/vscode

Docker compose para el servicio de Gitea y postgres

version: "3"

networks:
  gitea:
    external: false
volumes:
  gitea:
    driver: local

services:
  server:
    image: gitea/gitea:1.21.7
    container_name: gitea
    environment:
      - USER_UID=1000
      - USER_GID=1000
      - GITEA__database__DB_TYPE=postgres
      - GITEA__database__HOST=db:5432
      - GITEA__database__NAME=gitea
      - GITEA__database__USER=gitea
      - GITEA__database__PASSWD=gitea
    restart: always
    networks:
      - gitea
    volumes:
      - ./gitea:/data
      - /etc/timezone:/etc/timezone:ro
      - /etc/localtime:/etc/localtime:ro
    ports:
      - "3000:3000"
      - "222:22"
    depends_on:
      - db

  db:
    image: postgres:14
    restart: always
    environment:
      - POSTGRES_USER=gitea
      - POSTGRES_PASSWORD=gitea
      - POSTGRES_DB=gitea
    networks:
      - gitea
    volumes:
      - ./postgres:/var/lib/postgresql/data
docker compose up -d

Agregar carpeta ya existente:

git init 
git branch -m main
git remote add origin git@localhost:pdrok/Flisol2024.git
git add .
git commit -m "Agregar archivos para flask y dev container"
git fetch
git branch --set-upstream-to=origin/main main
git config pull.rebase true
git pull
git push

Herramientas terminal:

https://github.com/sharkdp/bat

https://ohmyz.sh/

Primer commit

holoviz/panel#3402

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment