Programming: mudanças entre as edições

De Wiki Clusterlab.com.br
Ir para navegação Ir para pesquisar
Sem resumo de edição
 
(19 revisões intermediárias pelo mesmo usuário não estão sendo mostradas)
Linha 1: Linha 1:
=Algorithm=
*[https://www.creditcardvalidator.org/articles/luhn-algorithm The Luhn Algorithm for Credit Card Validation]
=Dev Environment on docker=
*[[Jetbrains env|Jetbrains env]]
*[[Mongodb container|Mongodb container]]
=Docs=
*https://www.openpolicyagent.org/
*https://svelte.dev/
*https://svelte.dev/
*https://www.webcomponents.org/
*https://www.webcomponents.org/
Linha 4: Linha 12:
*https://flutter.dev/docs/resources/architectural-overview
*https://flutter.dev/docs/resources/architectural-overview
*https://flutter.dev/docs/development/ui/widgets-intro
*https://flutter.dev/docs/development/ui/widgets-intro
=JetBrains=
*[https://12factor.net/ The Twelve Factors (You Should Read it EveryDay !!)]
==TeamCity Server==
*https://jenkov.com/
<syntaxhighlight lang=bash>
*[https://semver.org/ Semantic Versioning]
#!/bin/bash
*[https://securityheaders.com/ Security Headers]
docker volume create teamcity_server_data
 
docker volume create teamcity_server_log
==CRC==
docker run \
*https://crccalc.com/
    -d \
    --name teamcity-server-instance  \
    -e TEAMCITY_SERVER_MEM_OPTS="-Xmx5g -XX:MaxPermSize=1g -XX:ReservedCodeCacheSize=1g" \
    -v teamcity_server_data:/data/teamcity_server/datadir  \
    -v teamcity_server_log:/opt/teamcity/logs  \
    -p 8084:8111 \
    jetbrains/teamcity-server
</syntaxhighlight>
==YouTrack==
<syntaxhighlight lang=bash>
#!/bin/bash
docker volume create youtrack_data
docker volume create youtrack_conf
docker volume create youtrack_logs
docker volume create youtrack_backups


docker run \
=Languages=
    -d \
*[[DART|DART]]
    --restart always \
*[[GO|GO]]
    --name youtrack \
*[[DotNet|DotNet]]
    -v youtrack_data:/opt/youtrack/data \
=[[Regular Expression|Regular Expression]]=
    -v youtrack_conf:/opt/youtrack/conf  \
=Security=
    -v youtrack_logs:/opt/youtrack/logs  \
*https://breachattack.com/
    -v youtrack_backups:/opt/youtrack/backups  \
=[[Stress Test|Stress Test]]=
    -p 8085:8080 \
    jetbrains/youtrack:2021.2.19690
</syntaxhighlight>
==Hub==
<syntaxhighlight lang=bash>
#!/bin/bash
docker volume create hub_server_data
docker volume create hub_server_conf
docker volume create hub_server_logs
docker volume create hub_server_backups
docker run \
    -d \
    --name hub-server-instance  \
    -v hub_server_data:/opt/hub/data \
    -v hub_server_conf:/opt/hub/conf  \
    -v hub_server_logs:/opt/hub/logs  \
    -v hub_server_backups:/opt/hub/backups  \
    -p 8086:8080 \
    jetbrains/hub:{version}
</syntaxhighlight>

Edição atual tal como às 13h54min de 4 de junho de 2024