aidxnFUN/README.md

147 lines
5.9 KiB
Markdown
Raw Normal View History

# aidxnFUN
2025-03-08 00:30:05 -05:00
2024-11-08 00:08:46 +00:00
[![License: CC0-1.0](https://img.shields.io/badge/License-CC0_1.0-lightgrey.svg)](http://creativecommons.org/publicdomain/zero/1.0/)
2024-12-19 22:49:42 -05:00
[![Latest Release](https://img.shields.io/badge/latest_version-v.1.30-purple)](https://github.com/ihatenodejs/aidxnFUN/releases)
2024-10-15 14:04:20 -04:00
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fihatenodejs%2FaidxnFUN.svg?type=shield&issueType=license)](https://app.fossa.com/projects/git%2Bgithub.com%2Fihatenodejs%2FaidxnFUN?ref=badge_shield&issueType=license)
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fihatenodejs%2FaidxnFUN.svg?type=shield&issueType=security)](https://app.fossa.com/projects/git%2Bgithub.com%2Fihatenodejs%2FaidxnFUN?ref=badge_shield&issueType=security)
2024-11-14 11:48:43 -05:00
<a href="https://512kb.club"><img src="https://512kb.club/assets/images/orange-team.svg" alt="a proud member of the orange team of 512KB club" /></a>
2024-11-08 00:08:46 +00:00
The full code of my website, under the CC0-1.0 license (public domain). Built with Tailwind CSS, EJS, Express.js, and Node.js
2025-03-08 00:30:05 -05:00
## Install and self-host
2024-11-08 00:08:46 +00:00
Have a weird obsession? Want a pre-built site you can use for free? Host aidxnFUN! As the code is available under the CC0-1.0 license, which means you should feel free and encouraged to change content, design, whatever!
2024-10-13 11:31:10 -04:00
2025-03-08 00:30:05 -05:00
During this process, `node` (20.08.0), `npm`, and `netcat` will be installed. If you use Windows, you must manually install Node.js.
2024-11-08 00:08:46 +00:00
**Please note:** The /status endpoint will be broken with default servers (ones I own) as CORS will block requests not made from aidxn.fun
2024-10-13 12:15:37 -04:00
2025-03-08 00:30:05 -05:00
### Debian/Ubuntu/Arch Linux
2024-10-13 11:31:10 -04:00
1. Clone the repo
```bash
git clone https://github.com/ihatenodejs/aidxnFUN
cd aidxnFUN
```
2025-03-08 00:30:05 -05:00
2. Setup `manage` (installs everything you need)
2024-10-13 11:31:10 -04:00
```bash
./manage setup
```
2025-03-08 00:30:05 -05:00
2024-11-07 13:59:02 -05:00
3. Start the server
2025-03-08 00:30:05 -05:00
2024-10-13 11:31:10 -04:00
```bash
./manage up
```
2025-03-08 00:30:05 -05:00
2024-10-21 20:25:23 -04:00
A server will now start on port :5566, and be accessible from your web browser at http://localhost:5566/. I highly suggest creating a NGINX reverse proxy for this, especially if you plan to point this to a domain.
2025-03-08 00:30:05 -05:00
### Windows
Windows-based hosts are only partially supported. I have no plans to write a script for Windows as of now, though that may change in the future, based on demand. However, `package.json` have bundled scripts to allow hosting on Windows. If you plan to host this website, I **STRONGLY** recommend that you use Linux.
2024-11-07 18:58:04 -05:00
**Windows hosting has not been tested in a while, and may not work perfectly.**
2025-03-08 00:30:05 -05:00
1. Install Node.js and NPM (or Bun) for Windows from [Node.js.org](https://nodejs.org/) or [bun.sh](https://bun.sh/)
2024-11-07 18:58:04 -05:00
2. Open a Node.js command prompt
2025-03-08 00:30:05 -05:00
2024-11-07 18:58:04 -05:00
3. Clone the repo
2025-03-08 00:30:05 -05:00
2024-11-07 18:58:04 -05:00
```bat
git clone https://github.com/ihatenodejs/aidxnFUN
cd aidxnFUN
```
2025-03-08 00:30:05 -05:00
2024-11-07 18:58:04 -05:00
4. Build the app
2025-03-08 00:30:05 -05:00
**Bun**
2024-11-07 18:58:04 -05:00
```bat
2025-03-08 00:30:05 -05:00
bun run build:win:bun
2024-11-07 18:58:04 -05:00
```
2025-03-08 00:30:05 -05:00
**NPM**
2024-11-07 18:58:04 -05:00
```bat
2025-03-08 00:30:05 -05:00
npm run build:win:npm
2024-11-07 18:58:04 -05:00
```
2025-03-08 00:30:05 -05:00
5. Run the app
**Bun**
```bat
set PORT=5566 && bun run start:win:bun
```
**NPM**
```bat
set PORT=5566 && npm run start:win:npm
```
2024-11-07 23:59:35 +00:00
You may use the `PORT` variable to set a custom port. While Windows tends to default to 3000, we will use 5566, which is the default for aidxnFUN on Linux.
2024-10-13 11:31:10 -04:00
2025-03-08 00:30:05 -05:00
## How it works
### Stack/Technical Stuff
This website uses Node.js, Express.js, EJS for templating, and Tailwind CSS.
2024-11-08 00:08:46 +00:00
2024-10-13 11:31:10 -04:00
The `manage` script uses all of those tools to manage the server for you executes the repetitive tasks for you automatically.
2024-11-08 00:08:46 +00:00
2024-10-15 19:48:19 -04:00
The views contain both regular page shards (full-ish pages) and generic shards (fragments of pages, widgets, etc.). I define a "shard" as an EJS template, which are pieced together into a pretty little website. The shards hold individual elements like music widgets, while a regular page shard is the page that contains the music widget, which the end user sees. This is helpful for understanding the code.
2024-10-13 11:31:10 -04:00
Thus far, shards are included for a music widget, the header, and the footer of the pages.
2025-03-08 00:30:05 -05:00
### Music
2024-10-13 12:19:03 -04:00
Music (as featured on the home page) is fetched from an API (hosted on https://biancarosa.com.br), which I am in the process of setting up for myself. It works with a LastFM account (I linked this to my Spotify) and can track your live listening with amazing accuracy. The repo can be found at [biancarosa/lastfm-last-played](https://github.com/biancarosa/lastfm-last-played).
2025-03-08 00:30:05 -05:00
I'm in the process of migrating this project over to MusicBrainz.
## Using the `manage` script
2024-11-08 00:08:46 +00:00
You may have noticed you have a `manage` file after cloning. `manage` is a command-line tool to manage the server. It can automatically start, stop, and restart your instance. This script only supports Linux-based systems.
First, you must complete the setup with the following commands:
```bash
chmod +x manage
./manage setup
```
2024-11-08 00:08:46 +00:00
After doing that, you are now ready to use the script.
2025-03-08 00:30:05 -05:00
### `manage` usage
2024-10-15 18:14:29 -04:00
`./manage [command] [options]`
2025-03-08 00:30:05 -05:00
### `manage` commands
2024-11-08 00:08:46 +00:00
+ `./manage up` - Builds the project and starts the server
+ `./manage down` - Stops the server
+ `./manage restart` - Restarts the server
+ `./manage status, -s, --status` - Checks if the server is running
+ `./manage help, -h, --help` - Shows the help message
2025-03-08 00:30:05 -05:00
## Troubleshooting
2025-03-08 00:30:05 -05:00
I highly suggest you take a peek at the `node.log` file's contents. It's in the same directory as the `manage` script. This file contains the Node.js server logs, which can be very helpful for debugging and/or troubleshooting.
## To-Do
- [ ] Add instructions for setting up without `manage`
2024-12-23 00:55:01 -05:00
- [ ] Fix spacing issues with footer (not the same size across pages)
2025-03-08 00:30:05 -05:00
- [ ] Fix status tracking and add tracking for latest servers
- [X] Improve dropdown menu style
2024-12-05 10:30:47 -05:00
- [X] Restructure menu with dropdowns
- [X] Implement PGP message verification
2024-11-07 09:37:15 -05:00
- [X] Add menu link to tilde website
2024-11-04 19:08:08 -05:00
- [X] Update projects page to latest information
2024-10-16 10:57:36 -04:00
# License
2025-03-08 00:30:05 -05:00
2024-10-16 10:57:36 -04:00
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fihatenodejs%2FaidxnFUN.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2Fihatenodejs%2FaidxnFUN?ref=badge_large)