Change app name to IpMe
This commit is contained in:
parent
0d855b3f08
commit
1ce8b53b50
7 changed files with 8 additions and 8 deletions
|
@ -1,6 +1,6 @@
|
||||||
(
|
(
|
||||||
;; Set a project name.
|
;; 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.
|
;; Disable ts-ls so that it falls back to deno-ls as the TypeScript language server.
|
||||||
(typescript-mode . ((lsp-disabled-clients . (ts-ls))))
|
(typescript-mode . ((lsp-disabled-clients . (ts-ls))))
|
||||||
)
|
)
|
||||||
|
|
|
@ -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>
|
# Copyright (C) 2023 Foster Hangdaan <foster@hangdaan.email>
|
||||||
|
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#+title: Ipify
|
#+title: IpMe
|
||||||
|
|
||||||
* About
|
* About
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
version: "3.9"
|
version: "3.9"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
ipify:
|
ipme:
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
container_name: ipify
|
container_name: ipme
|
||||||
env_file: .env.local
|
env_file: .env.local
|
||||||
ports:
|
ports:
|
||||||
- "8000:8000"
|
- "8000:8000"
|
||||||
|
|
2
main.ts
2
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 <foster@hangdaan.email>
|
* Copyright (C) 2023 Foster Hangdaan <foster@hangdaan.email>
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
|
|
@ -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>
|
* Copyright (C) 2023 Foster Hangdaan <foster@hangdaan.email>
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
|
|
@ -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>
|
* Copyright (C) 2023 Foster Hangdaan <foster@hangdaan.email>
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
|
Loading…
Reference in a new issue