x1n13y84issmd42 / bashttpd

👨🏻‍💻👩🏼‍💻👨🏾‍💻 An HTTP server and a web framework in Bash script.
GNU General Public License v3.0
22 stars 1 forks source link

Static sites #2

Open philiprhoades opened 3 months ago

philiprhoades commented 3 months ago

I have used lots of Rails and Jekyll sites for many years and now I was just looking for a simpler and faster framework built in a familiar environment for me that could create static web sites quickly and nicely . . I am less concerned about so-called "modern" themes etc . .

Have you had any more ideas about static site improvements?

Thanks, Phil.

philiprhoades commented 3 months ago

I have this little DB of books updated by a Bash script - how much would you charge to fork your existing code to a version I could use for this?:

SQLite version 3.45.1 2024-01-30 16:01:20
Enter ".help" for usage hints.
sqlite> .schema
CREATE TABLE books ( id INTEGER PRIMARY KEY AUTOINCREMENT,
            box INTEGER,
            isbn VARCHAR(255),
            title VARCHAR(255),
            longtitle VARCHAR(255),
            author VARCHAR(255),
            publisher VARCHAR(255),
            summary TEXT,
            notes TEXT,
            urls VARCHAR(255),
            awards VARCHAR(255),
            borrowed BOOLEAN,
            borrower VARCHAR(255),
            created_at TIMESTAMP,
            updated_at TIMESTAMP
            );
CREATE TABLE sqlite_sequence(name,seq);

I would also like a version I could use for "Watched Netflix Videos" but I will see how the books go . .

In keeping with this mood, have you ever thought about also using a text-based DB?:

GNU Recutils - GNU Project - Free Software Foundation

Thanks, Phil.