1
Fork 0

Additional language markers

This commit is contained in:
Jan-Erik Rediger 2024-01-05 20:10:21 +02:00
parent 2f131165b3
commit 97fa04f2d9
2 changed files with 3 additions and 3 deletions

View file

@ -27,7 +27,7 @@ Let's deploy it on [fly.io].
We start by creating a new Fly app. We start by creating a new Fly app.
We stick to a generated name and put it into Frankfurt. We stick to a generated name and put it into Frankfurt.
```bash ```shell
$ mkdir -p Documents/gotosocial-fly $ mkdir -p Documents/gotosocial-fly
$ cd Documents/gotosocial-fly $ cd Documents/gotosocial-fly
$ fly launch $ fly launch

View file

@ -81,7 +81,7 @@ I trimmed that down just slightly and swapped in Ruby 2.7 (here's the [list of a
The important line is this: The important line is this:
``` ```nix
ruby = pkgs."ruby-2.7.8"; ruby = pkgs."ruby-2.7.8";
``` ```
@ -89,7 +89,7 @@ ruby = pkgs."ruby-2.7.8";
Now on to installing it into a shell: Now on to installing it into a shell:
``` ```bash
nix develop nix develop
``` ```