*: fix forgotten renames from web to tclipd
All checks were successful
Nix build / build-docker-arm (push) Successful in 9m18s
Nix build / build-docker (push) Successful in 11m55s

This commit is contained in:
Emrecan BATI 2023-10-01 16:59:21 +03:00 committed by Gabriel Simmer
parent 8f33e31756
commit 1f6017e287
Signed by: arch
SSH key fingerprint: SHA256:m3OEcdtrnBpMX+2BDGh/byv3hrCekCLzDYMdvGEKPPQ
3 changed files with 6 additions and 6 deletions

View file

@ -12,9 +12,9 @@ number of pastes.
3. `nix develop` 3. `nix develop`
You can then test your changes to tclip by running `go run You can then test your changes to tclip by running `go run
./cmd/web` or `go run ./cmd/tclip` as appropriate. ./cmd/tclipd` or `go run ./cmd/tclip` as appropriate.
Note that for the first run of `./cmd/web`, you *must* set Note that for the first run of `./cmd/tclipd`, you *must* set
either the `TS_AUTHKEY` environment variable, or run it with either the `TS_AUTHKEY` environment variable, or run it with
`--tsnet-verbose` to get the login URL for Tailscale. `--tsnet-verbose` to get the login URL for Tailscale.
@ -22,7 +22,7 @@ either the `TS_AUTHKEY` environment variable, or run it with
The web server: The web server:
``` ```
nix build .#web nix build .#tclipd
``` ```
The docker image: The docker image:

View file

@ -3,8 +3,8 @@
"version": "0.1.0", "version": "0.1.0",
"description": "tclip, the pastebin for tailscale", "description": "tclip, the pastebin for tailscale",
"scripts": { "scripts": {
"start:css": "tailwindcss --watch -o cmd/web/static/css/base.css", "start:css": "tailwindcss --watch -o cmd/tclipd/static/css/base.css",
"build:css": "tailwindcss -o cmd/web/static/css/base.css" "build:css": "tailwindcss -o cmd/tclipd/static/css/base.css"
}, },
"dependencies": { "dependencies": {
"@tailwindcss/forms": "^0.5.4", "@tailwindcss/forms": "^0.5.4",

View file

@ -1,5 +1,5 @@
module.exports = { module.exports = {
content: ["./cmd/web/tmpl/*.html"], content: ["./cmd/tclipd/tmpl/*.html"],
theme: { theme: {
colors: { colors: {
blue: { blue: {