Do I really need a database for my personal website?

0
17
Asked By ArtfulCoder77 On

I'm new to coding and I'm working on creating my personal website to showcase my comics and art. I'm unsure if I need a database for this project. Should I just store all my images in a folder and link to them via HTML, or is learning to use a database necessary? If I do need a database, which one would you suggest? I'm currently learning MySQL, but I'm not sure if that's too complicated for my needs.

5 Answers

Answered By CodeCrafter_99 On

Since you'll be managing images without dynamic content, you likely won't need a database. A simple HTML/CSS setup will suffice for now. Just focus on what works best for you and your artistic vision!

Answered By MetaMogul18 On

For a hobby project, you might want to explore a lighter database like Supabase. It’s super friendly for beginners, and you can always upgrade to SQL later on if you want to expand.

Answered By ChillDeveloper42 On

You can totally start off without a database! If you're just displaying your artwork, keeping the images in a folder is a simple, effective method. However, if you ever decide to allow user uploads in the future, then a database could be the way to go.

Answered By StaticSiteNerd On

Honestly, if your goal is just to show pictures, a static site approach works wonders. Using something like Eleventy for your portfolio sounds perfect. You can even host it for free on GitHub or Netlify!

Answered By TechieTraveler45 On

If it’s all about showcasing your own work, skip the database! Just stick to organizing your files. A database is more useful if you're planning on adding features like user logins or dynamic content.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.