//usefull commands in archethic-node development
sudo mix clean & sudo mix format & sudo mix
https://docs.docker.com/compose/install/
https://docs.portainer.io/v/ce-2.9/start/install/server/docker/linux
Anti-pattern | |
https://stackoverflow.com/questions/980601/what-is-an-anti-pattern |
//usefull commands in archethic-node development
sudo mix clean & sudo mix format & sudo mix
https://docs.docker.com/compose/install/
https://docs.portainer.io/v/ce-2.9/start/install/server/docker/linux
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# This script will recursively find all .ex and .exs files | |
# and sort the alias groups within each file alphabetically. | |
find . -type f \( -name "*.ex" -o -name "*.exs" \) | while read -r file; do | |
# Read the file into an array | |
mapfile -t lines < "$file" | |
in_alias_group=false |
change Function: | |
Automatic Reversibility: Used when Ecto can automatically infer how to reverse the migration. | |
Simple Operations: Suitable for straightforward schema changes like creating/dropping tables, | |
adding/removing columns, and modifying indexes. | |
up and down Functions: |