Change app name to IpMe

This commit is contained in:
Foster Hangdaan 2023-11-13 18:04:39 -05:00
parent 0d855b3f08
commit 1ce8b53b50
Signed by: foster
GPG key ID: E48D7F49A852F112
7 changed files with 8 additions and 8 deletions

View file

@ -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))))
)

View file

@ -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 <foster@hangdaan.email>
# This program is free software: you can redistribute it and/or modify

View file

@ -1,4 +1,4 @@
#+title: Ipify
#+title: IpMe
* About

View file

@ -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"

View file

@ -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 <foster@hangdaan.email>
*
* This program is free software: you can redistribute it and/or modify

View file

@ -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 <foster@hangdaan.email>
*
* This program is free software: you can redistribute it and/or modify

View file

@ -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 <foster@hangdaan.email>
*
* This program is free software: you can redistribute it and/or modify