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
services: | |
portainer: | |
image: portainer/portainer-ce:lts | |
restart: always | |
ports: | |
- 9443:9443 | |
- 9000:9000 | |
- 8000:8000 | |
volumes: | |
- portainer_data:/data |
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
services: | |
wordpress: | |
image: 'wordpress:latest' | |
volumes: | |
- 'wordpress-files:/var/www/html' | |
environment: | |
- SERVICE_FQDN_WORDPRESS | |
- WORDPRESS_DB_HOST=mariadb | |
- WORDPRESS_DB_USER=$SERVICE_USER_WORDPRESS | |
- WORDPRESS_DB_PASSWORD=$SERVICE_PASSWORD_WORDPRESS |
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
version: "3.9" | |
services: | |
blackd: | |
restart: always | |
image: docker.io/pyfound/black | |
command: blackd --bind-host 0.0.0.0 --bind-port 45484 | |
ports: | |
- "45484:45484" |
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
Section "InputClass" | |
Identifier "system-keyboard" | |
MatchIsKeyboard "on" | |
Option "XkbLayout" "br" | |
Option "XkbOptions" "caps:swapescape" | |
EndSection |
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
export PATH="$HOME/.pyenv/bin:$PATH" | |
eval "$(pyenv init --path)" | |
eval "$(pyenv virtualenv-init -)" |
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
[Unit] | |
Description=Kickoff Minikube Cluster | |
After=docker.service | |
[Service] | |
Type=oneshot | |
ExecStart=/usr/local/bin/minikube start | |
RemainAfterExit=true | |
ExecStop=/usr/local/bin/minikube stop | |
StandardOutput=journal |
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
## | |
## Manjaro Linux default mirrorlist | |
## Generated on 2021-09-16 11:44 | |
## | |
## Please use 'pacman-mirrors -f [NUMBER] [NUMBER]' to modify mirrorlist | |
## (Use 0 for all mirrors) | |
## | |
## Country : South_Korea | |
Server = https://mirror.d-tl.com/manjaro/testing/$repo/$arch |
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# | |
# @Author: José Sánchez-Gallego ([email protected]); Jonhnatha Trigueiro ([email protected]) | |
# @Date: 2019-12-18 | |
# @Filename: create_setup.py | |
# @License: BSD 3-clause (http://www.opensource.org/licenses/BSD-3-Clause) | |
# https://github.com/sdss/flicamera/blob/master/create_setup.py | |
# This is a temporary solution for the fact that pip install . fails with |
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
{ | |
"global": { | |
"check_for_updates_on_startup": true, | |
"show_in_menu_bar": true, | |
"show_profile_name_in_menu_bar": false | |
}, | |
"profiles": [ | |
{ | |
"complex_modifications": { | |
"parameters": { |
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
# In order to add your repository, change my_pypi for whatever you want | |
$ poetry config repositories.my_pypi http://localhost:8010/ | |
# Creating a default credential | |
$ poetry config http-basic.my_pypi <the_user_you_created> <your_password> | |
# In order to publish your package, just run this | |
$ poetry publish --repository my_pypi --build |
NewerOlder