this post was submitted on 11 May 2024
7 points (76.9% liked)
Furry Programmers
293 readers
1 users here now
English-language general programmers community
Please treat pawb.social’s rules as though they were the rules of this community, even if you’re posting from another instance!
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Oh man, same boat. (Though for me I'm just making a whole blog instead; I found it more flexible to my needs.)
The best general advice I can give, is to define early and clearly what features you want, and to stick to that. If you get any idea for extra features along the way, reserve them for a future version. This will help you break down the work, and avoid scope creep.
Have you already chosen a framework for the front and back ends?
No front end yet, I'm really hoping somebody will want to help with that, but I would prefer as little JavaScript running as possible.
The only applicable language I already knew was Python, so I'm going with flask for the back end.
Currently the website just has a static page I generated with Jekyll.
OK, I'm less familiar with flask, but for the front-end logic, jinja fits well into your needs, I think
I'd definitely recommend also using a css framework too, because it takes a lot of the legwork away from you. Most have JS dependencies, but there's Bulma, which is a no-JS one that's easy to customize.
I think jinja is actually sort of built into Flask. As much css/html that I can offload the better.