hosting
Unanswered
Pyrenean Mountain Dog posted this in #help-forum
Pyrenean Mountain DogOP
I'm currently in the process of planning a website with next.js which is related to drop shipping. With a routine established on my laptop, I am able to visit sites, such as AliExpress and Alibaba, to add new products to my own database every five minutes, amounting to approximately 1000 new products daily.
I need to create 1000 new HTML pages for these products daily, which fortunately won't be difficult since I already have a base page and simply need to update certain items such as the title, pricing, and a few traits.
The next part of my plan is hosting these 1000 pages somewhere that is cost-effective and also caching them for bandwidth conservation purposes. However, I am completely baffled as to where I should begin, which hosting service to use, and what the product architecture should look like.
From what I understand, it seems more like a hybrid SSG. Any guidance or advice would be greatly appreciated.
I need to create 1000 new HTML pages for these products daily, which fortunately won't be difficult since I already have a base page and simply need to update certain items such as the title, pricing, and a few traits.
The next part of my plan is hosting these 1000 pages somewhere that is cost-effective and also caching them for bandwidth conservation purposes. However, I am completely baffled as to where I should begin, which hosting service to use, and what the product architecture should look like.
From what I understand, it seems more like a hybrid SSG. Any guidance or advice would be greatly appreciated.
12 Replies
you can use free databases
@@ts-ignore [Mysql](<https://planetscale.com>)
[Postgresql](<https://neon.tech>)
[Postgresql](<https://supabase.com>)
What's the difference between those 2 postgress?
Ahh discord wasn't showing me superbase and neon (on mobile onclick)
[Sqlite](https://turso.tech/)
@@ts-ignore [Sqlite](<https://turso.tech/>)
Pyrenean Mountain DogOP
I forgot one cruicial detail, I will have about 10,000 views per day
@Pyrenean Mountain Dog I forgot one cruicial detail, I will have about 10,000 views per day
then use static site generation
Pyrenean Mountain DogOP
yeah that's what I was thinking... so I will have to decide where i will host generated site
@Pyrenean Mountain Dog yeah that's what I was thinking... so I will have to decide where i will host generated site
you can't host sites which generate revenue on vercel for free, you'll have to upgrade to their pro plan
but you can use netlify or your own server
I would say cloudflare pages (if full static) as it has a good limits (but build time can be large as it has to to each page)
Pyrenean Mountain DogOP
it's probably my small brain, not able to comprehend a proper plan to move forward with this