owned-by/README.md

24 lines
552 B
Markdown
Raw Permalink Normal View History

2025-01-05 15:37:24 -05:00
# owned-by
2025-01-05 16:00:50 -05:00
2025-01-05 15:37:24 -05:00
A landing page to display the owners information for a domain
2025-01-05 16:00:50 -05:00
# How to self host
1. **Install Bun (`npm` but faster!)**
**Windows**
```
powershell -c "irm bun.sh/install.ps1 | iex"
```
**Linux & macOS**
```
curl -fsSL https://bun.sh/install | bash
```
2. **Install deps**
```
bun install
```
3. **Run dev server**
```
bun dev
```
You will now have a server started on port 3000. Simply go to http://localhost:3000 in your browser, and your dev server will build the pages as you make requests.