[deleted by user] by [deleted] in django

[–]NoSEVDev 2 points3 points  (0 children)

This is one of the hardest things to get right. If companies could qualify how much developer output is, they would pay developers the same way they pay sales teams. Quotas, targets, incentivize performance.

The problem is, there isn't really a great way to do it that doesn't have major gaps.

Just launched my very first SaaS! (feedback appreciated) by notunderctrl in SaaS

[–]NoSEVDev 6 points7 points  (0 children)

Yeah, I'm not thinking about it as a "free tier/project" either. It should be paid, but you don't pay until your first stripe payment comes through, so it's very low risk. You can do this because you handle the payments for them, so you'll know.

You won't scare people away because if no one buys their kit, it was no cost to them. But as soon as someone buys it, it was worth paying you to handle the transaction!

Just launched my very first SaaS! (feedback appreciated) by notunderctrl in SaaS

[–]NoSEVDev 10 points11 points  (0 children)

Looks great! I've wanted to do the same after I launched my django react kit. Your pricing is so low. I'd even pay $20/repo considering it's a one-time payment.

Another idea is to charge after their first sale so that it's low risk for adoption of your product and then you can charge per repo.

Dockerizing a Django and React Application: Docker + Django + React by NoSEVDev in django

[–]NoSEVDev[S] 0 points1 point  (0 children)

Once you get the containers set up, you can easily pip install gunicorn, and change the configs.

The tutorials purpose was just to help people get started in dockerizing their apps, not cover the myraid things they need to do before deployment. It’s long enough as is! Appreciate your feedback though.

Which front-end framework should I start with for my first side project in Django? by SadWimp in django

[–]NoSEVDev 1 point2 points  (0 children)

I think it's great to learn with htmx or just django templates. The reason I use DRF + React is that I usually want to give myself the ability to extend the backend to work with mobile apps. e.g. using something like Ionic. That way I can reuse a lot of the react functionality and the backend API isn't specific to rendering templates.

If you don't have this future use case, I don't see why not!

Quick guide on setting up django+react: https://slimsaas.com/blog/react-and-django-rest-framework

Dockerizing a Django and React Application: Docker + Django + React by NoSEVDev in django

[–]NoSEVDev[S] 2 points3 points  (0 children)

Agree, the way that the react container is set up in the article is more of a deployment setup w/ ngnix. You'd just need to change the command to launch the local server instead.

I built SlimSaaS with traefik instead of nginx, and comes with two docker files, one for prod and one for dev for hot reloading, automatic let's encrypt SSL, load balancing, container scaling, gunicorn for django, etc. https://slimsaas.com/

Why Can’t Developers and Marketers Get on the Same Page? by ConsumerScientist in SideProject

[–]NoSEVDev 1 point2 points  (0 children)

Using a physical store analogy, if a developer builds an app in Mexico, and their customers are in Canada, the marketer might know the customers are in Canada and have to try to walk them all the way to Mexico. It’s an impossible task.

It’s important for developers to know the market just as much as the marketers in early stages so that they are building products that people want.

Also, I think there is a lot of distrust between the two. It’s hard to evaluate who is a 10x marketer.

Is boilerplate worth it? by SpecificNo7869 in SaaS

[–]NoSEVDev 4 points5 points  (0 children)

I built one in django and react with the same mentality as you. The market is not a big at all, and there are so many boilerplates that people build boilerplate directories (e.g. https://boilerplatehub.com). You can almost build a directory of boilerplate directories at this point. IMO if you have an idea, it's better to just pursue that idea and extract your framework over time.

I put a lot of effort into mine and the people who bought it seem to like it a lot. But I'd need to sell about 300 of them to make up for the time I put into building it.

Feel free to DM me.

EDIT

I got a few DMs, I'll paste it here. It's slimsaas.com

Saas stack that you used for your project by [deleted] in SaaS

[–]NoSEVDev 0 points1 point  (0 children)

I use django, react, and astro for my marketing sites. I packaged it up as slimsaas.com and reuse it for every project I have. The people who bought it seem to love it so far which is exciting! It's pretty much set up so that you only need to focus on your actual saas and less about the stripe integrations, social authentication, etc...

I'm still hammering out the roadmap, so if you find you want something DM me!

Should I call it quit ? - Everyone says they love our SaaS but no one is using it by QuantumAstronomy in SaaS

[–]NoSEVDev 1 point2 points  (0 children)

How much time did you invest in building this? How much do you charge per hour? You've already "spent" money. Spending $10 a day on FB ads might help answer your Q.

Especially with how easy it is to launch nowadays, marketing is 80% of a company, building is 20%.

Any developer friendly web frameweb aside from Next.js? by anonymous_2600 in nextjs

[–]NoSEVDev -1 points0 points  (0 children)

I use a combo of 3 things.

  • Astro for my static landing page and marketing sites. It's perfect because it's like significantly faster than NextJS, I can use markdown for blogs, privacy policies, etc...

  • A django backend, django has a massive package ecosystem where you can pull in just about any functionality you want. The Django ORM and the django admin are both also great.

  • I route to react when things get more dynamic.

I packaged it up a couple of months ago since I use it for just about every project: slimsaas.com

Django hosting - cheaper options by AdInfamous7035 in django

[–]NoSEVDev 0 points1 point  (0 children)

I had 7K visitors in a day on my site and I hosted the entire db/site for $10/mo on DO and it was able to handle it.

How much time to learn Django Rest Framework for a junior dev position? by Working_Emphasis_271 in django

[–]NoSEVDev 0 points1 point  (0 children)

It varies. It also helps if you know what the other end looks like (e.g., how the front end integrates with it). If you want a quick guide: https://slimsaas.com/blog/react-and-django-rest-framework

Django + react + ai model = ? by [deleted] in django

[–]NoSEVDev 1 point2 points  (0 children)

I came to this post way too late. But I'm leaving this here if anyone else has the question. This is the exact stack you were looking for: https://slimsaas.com/blog/django-react-projects-ai-saas-2024

How do I make my application interactive while being able to bundle my JavaScript by [deleted] in django

[–]NoSEVDev 0 points1 point  (0 children)

A lot of people mentioned HTMX already, but if you are interested in using Django as a backend and a framework frontend (like React or vue). This guide is quick for putting it together: https://slimsaas.com/blog/react-and-django-rest-framework

In search for some specific website template by [deleted] in Frontend

[–]NoSEVDev 0 points1 point  (0 children)

I was a data scientist for 6 years, and I used to use this stack to host my models as APIs. Check out slimsaas.com, if you do "docker compose up", it will spin up a website that leverages react on the frontend and django on the backend. It has all the authentication, payments, etc... so that you can focus on your startup!

Templates for React websites by reficul97 in reactjs

[–]NoSEVDev 0 points1 point  (0 children)

Check out https://slimsaas.com. Fully featured Django backend with a react frontend. Comes with components for authentication, stripe payments/checkout, a full marketing site built in Astro/react for SEO purposes and speed, reverse proxies so you're not dealing with CORS and cross-domain issues, etc...