summaryrefslogtreecommitdiffstats
path: root/lib/systems/architectures.nix
AgeCommit message (Expand)Author
2021-01-23lib: Clean up how linux and gcc config is specifiedJohn Ericson
2020-12-23lib.systems: update processor architecture infoFabián Heredia Montiel
2020-09-09Fix arch eval error introduced in #61019arcnmx
2020-09-01Update architectures.nixvolth
2020-08-22Update architectures.nixvolth
2020-08-22Update architectures.nixvolth
2020-08-22Update architectures.nixvolth
2020-08-05gcc.arch: refactor, move tables under lib/volth
egex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#!/bin/sh
set -e

export LEMMY_DATABASE_URL=postgres://lemmy:password@localhost:5432/lemmy
export JWT_SECRET=changeme
export HOSTNAME=rrr

cd ui
yarn
yarn build
cd ../server
cargo run

# For live coding, where both the front and back end, automagically reload on any save, do:
# cd ui && yarn start
# cd server && cargo watch -x run