stack-orchestrator/docs/gitea-with-laconicd-fixturenet.md
zramsay dfedd9e9ff
Some checks failed
Lint Checks / Run linter (push) Successful in 38s
Publish / Build and publish (push) Successful in 1m21s
Deploy Test / Run deploy test suite (push) Successful in 4m53s
Smoke Test / Run basic test suite (push) Successful in 3m47s
Webapp Test / Run webapp test suite (push) Successful in 4m41s
Fixturenet-Laconicd-Test / Run Laconicd fixturenet and Laconic CLI tests (push) Failing after 12m28s
rename laconic-sdk to registry-sdk (#897)
Co-authored-by: zramsay <zach@bluecollarcoding.ca>
Reviewed-on: #897
Reviewed-by: ashwin <ashwin@noreply.git.vdb.to>
Co-authored-by: zramsay <zramsay@noreply.git.vdb.to>
Co-committed-by: zramsay <zramsay@noreply.git.vdb.to>
2024-07-31 08:01:02 +00:00

2.3 KiB

Gitea x NPMs X Laconicd

Deploy a local Gitea server, publish NPM packages to it, then use those packages to build a Laconicd fixturenet. Demonstrates several components of the Laconic stack

Build and Deploy Gitea

laconic-so --stack build-support build-containers
laconic-so --stack package-registry setup-repositories
laconic-so --stack package-registry build-containers 
laconic-so --stack package-registry deploy up

These commands can take awhile. Eventually, some instructions and a token will output. Set CERC_NPM_AUTH_TOKEN:

export CERC_NPM_AUTH_TOKEN=<your-token>

Configure the hostname gitea.local

How to do this depends on your operating system but usually involves editing a hosts file. For example, on Linux add this line to the file /etc/hosts (needs sudo):

127.0.0.1       gitea.local

Test with:

ping gitea.local
PING gitea.local (127.0.0.1) 56(84) bytes of data.
64 bytes from localhost (127.0.0.1): icmp_seq=1 ttl=64 time=0.147 ms
64 bytes from localhost (127.0.0.1): icmp_seq=2 ttl=64 time=0.033 ms

Although not necessary in order to build and publish packages, you can now access the Gitea web interface at: http://gitea.local:3000 using these credentials: gitea_admin/admin1234 (Note: please properly secure Gitea if public internet access is allowed).

Build npm Packages

Clone the required repositories:

laconic-so --stack fixturenet-laconicd setup-repositories

Build and publish the npm packages:

laconic-so --stack fixturenet-laconicd build-npms

Navigate to the Gitea console and switch to the cerc-io user then find the Packages tab to confirm that these two npm packages have been published:

  • @cerc-io/laconic-registry-cli
  • @cerc-io/registry-sdk

Build and deploy fixturenet containers

laconic-so --stack fixturenet-laconicd build-containers
laconic-so --stack fixturenet-laconicd deploy up

Check the logs:

laconic-so --stack fixturenet-laconicd deploy logs

Test with the registry CLI

laconic-so --stack fixturenet-laconicd deploy exec cli "laconic registry status"

Try additional CLI commands, documented here.