diff --git a/.dir-locals.el b/.dir-locals.el index a56e8af..09162f3 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -1,6 +1,6 @@ ( ;; Set a project name. - (nil . ((projectile-project-name . "Ipify"))) + (nil . ((projectile-project-name . "IpMe"))) ;; Disable ts-ls so that it falls back to deno-ls as the TypeScript language server. (typescript-mode . ((lsp-disabled-clients . (ts-ls)))) ) diff --git a/Containerfile b/Containerfile index de7fa9a..f321f0a 100644 --- a/Containerfile +++ b/Containerfile @@ -1,4 +1,4 @@ -# Ipify - A self-hosted API for obtaining a public IP address. +# IpMe - A self-hosted API for obtaining a public IP address. # Copyright (C) 2023 Foster Hangdaan # This program is free software: you can redistribute it and/or modify diff --git a/README.org b/README.org index 2c5136e..4350f15 100644 --- a/README.org +++ b/README.org @@ -1,4 +1,4 @@ -#+title: Ipify +#+title: IpMe * About diff --git a/compose.yaml b/compose.yaml index 775add9..4f40c1a 100644 --- a/compose.yaml +++ b/compose.yaml @@ -1,10 +1,10 @@ version: "3.9" services: - ipify: + ipme: build: context: . - container_name: ipify + container_name: ipme env_file: .env.local ports: - "8000:8000" diff --git a/main.ts b/main.ts index d12e530..b4dfe6c 100644 --- a/main.ts +++ b/main.ts @@ -1,5 +1,5 @@ /* - * Ipify - A self-hosted API for obtaining a public IP address. + * IpMe - A self-hosted API for obtaining a public IP address. * Copyright (C) 2023 Foster Hangdaan * * This program is free software: you can redistribute it and/or modify diff --git a/tests/main.ts b/tests/main.ts index 9b8de0c..ffd31e0 100644 --- a/tests/main.ts +++ b/tests/main.ts @@ -1,5 +1,5 @@ /* - * Ipify - A self-hosted API for obtaining a public IP address. + * IpMe - A self-hosted API for obtaining a public IP address. * Copyright (C) 2023 Foster Hangdaan * * This program is free software: you can redistribute it and/or modify diff --git a/utils/app.ts b/utils/app.ts index f9f329e..f9238ef 100644 --- a/utils/app.ts +++ b/utils/app.ts @@ -1,5 +1,5 @@ /* - * Ipify - Self-hosted API for obtaining a public IP address. + * IpMe - Self-hosted API for obtaining a public IP address. * Copyright (C) 2023 Foster Hangdaan * * This program is free software: you can redistribute it and/or modify