Skip to content
/ pico Public

services that empower developers using ssh

License

Notifications You must be signed in to change notification settings

picosh/pico

Folders and files

NameName
Last commit message
Last commit date

Latest commit

d996f5a · Nov 10, 2023
Nov 9, 2023
Nov 10, 2023
Oct 7, 2023
Oct 15, 2023
Aug 2, 2022
Nov 5, 2023
Nov 10, 2023
Aug 2, 2022
Nov 10, 2023
Nov 10, 2023
Nov 10, 2023
Nov 10, 2023
Nov 10, 2023
Nov 8, 2023
Nov 10, 2023
Nov 10, 2023
Aug 31, 2022
Nov 10, 2023
Sep 23, 2023
Nov 10, 2023
Aug 2, 2022
Sep 5, 2023
Oct 5, 2023
Sep 12, 2023
Oct 5, 2023
Jul 27, 2022
Nov 9, 2023
Sep 5, 2023
Oct 5, 2023
Oct 5, 2023
Oct 5, 2023
Nov 9, 2023
Nov 10, 2023
Nov 10, 2023
Nov 7, 2023
Aug 8, 2022

Repository files navigation

pico services

This repo hosts the following pico services:

comms

development

  • golang >= 1.21.0
  • direnv to load environment vars
  • webp package dependency
    • on mac can be installed with brew install webp
    • on ubuntu can be installed with sudo apt install libwebp-dev
cp ./.env.example .env

Initialize local env variables using direnv

echo dotenv > .envrc && direnv allow

Boot up database

docker compose up -f docker-compose.yml -f docker-compose.override.yml --profile db -d

Create db and migrate

make create
make migrate

Build services

make build

All services are built inside the ./build folder.

If you want to start prose execute these binaries from the project root directory:

./build/prose-web
# in a separate terminal
./build/prose-ssh

deployment

We use an image based deployment, so all of our images are uploaded to ghcr.io/picosh/pico

DOCKER_TAG=latest make bp-all

Once images are built, docker compose is used to stand up the services:

docker compose up -d

This makes use of a production .env.prod environment file which defines the various listening addresses and services that will be started. For production, we add a .envrc containing the following:

export COMPOSE_FILE=docker-compose.yml:docker-compose.prod.yml
export COMPOSE_PROFILES=services,caddy

And symlink .env to .env.prod:

ln -s .env.prod .env

This allows us to use docker-compose normally as we would in development.

For any migrations, logging into the our database server, pulling the changes to migrations and running make latest is all that is needed.