Hey hello, self-hosting noob here. I just want to know if anyone would know a good way to host my writing. Something akin to those webcomic sites, except for writing. Multiple stories with their own “sections” (?) and a chapter selection for each. Maybe a home page or profile page to just briefly detail myself or whatever, I don’t know. It doesn’t have to be fancy, and I apologize for not knowing how to describe this well. I’ve just been searching and searching and I don’t know what to look up to find what I want, it’s extremely frustrating. Any help is greatly appreciated.

  • NeedForSeed@lemmy.dbzer0.com
    link
    fedilink
    English
    arrow-up
    1
    ·
    2 months ago

    If I understand correctly, you want a self hosted version of Wattpad or Inkitt for posting stories. I don’t know if there is a 1:1 software that can do exactly that.

    As a starting point, you could try building a static website. They easiest ones follow a blog format and store the text on a markdown file. Many have recommended Hugo on this thread, but I’d like to recommend Zola instead. Paired with the well documented tabi theme, you could spawn a new “blog” for each story and use the archive view to have the chapter selection.

    It’s not exactly the best solution, but I think it’s a good starting point to try it out.

    P.S. Zola is inspired in Hugo. The creator thought Hugo was too complicated.

    • adr1an@programming.dev
      link
      fedilink
      English
      arrow-up
      1
      ·
      2 months ago

      This is good advice. Learn about markdown syntax, try Obsidian to write notes that can be interrelated in a network, add drawings, and export selected notes to HTML. You can further stylize all of them with some custom CSS. There are many “content management system” (CMS) like Obsidian does. I’d self host ghostwriter. But just search for a CMS on awesome self hosted list and find something popular that’s akin to you for whatever features or underlying tech (e.g. Wagtail for django web devs)

  • Shin@lemmy.worldOP
    link
    fedilink
    English
    arrow-up
    1
    ·
    2 months ago

    I cannot reply to everyone, but genuinely thank you all so much for the help. I’ll be going with a simplistic zola setup suggested by one of the commentors. I barely expected a handful, let alone all these comments. It really means a lot, especially to a noob who felt like this was a really dumb question.

  • solrize@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    ·
    2 months ago

    If you want a fancy multi-user site, the source code for archiveofourown.org is on github or gitlab (idr which). But for a small single user site I’d just go static. You could go full nerdy and write in texinfo then run an html converter. Texinfo is actually for computer manuals so it has chapters, sections, cross references, indexes, link navigation between pages, the whole bit. It is a markup language which I think is better than a wysiwyg formatter for documents that will be read in more than one way. I think there is a way to make epubs from texinfo docs.

    In a sort of similar spirit there is Org mode (org-mode.org) but you have to be or become an Emacs zealot to use it.

    Look also at pandoc.org which converts between lots of formats.

  • ThePowerOfGeek@lemmy.world
    link
    fedilink
    English
    arrow-up
    0
    ·
    edit-2
    2 months ago

    I don’t have a direct answer to your question. But I advise caution in putting your creative works online in the way you are planning. Between people plagiarizing it (either word for word or just the broader concepts) and AIs doing similar things, you could find that your work gets stolen.

    Self-publishing might at least give you a bit of inherent copyright protection. Then at least you will have an ISBN associated to it, and you can always host your stories somewhere (WordPress, Medium, etc.).

    If you want to self-publish your stories a free service like Smash Words would work.

    • Shin@lemmy.worldOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      2 months ago

      Thank you for the advice. Honestly, I’m a young 20 something that just wants to output creative stuff for people to read and enjoy. None of this really popped in my head, so thanks.

      I still want to host my own site for it though, but I will consider the self publishing angle as well. Thanks for the advice.