Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,148,790 members, 7,802,485 topics. Date: Friday, 19 April 2024 at 03:19 PM

For Django Developer - Programming - Nairaland

Nairaland Forum / Science/Technology / Programming / For Django Developer (11824 Views)

Python/django Developer / CI/CD Pipeline For Django Application / Django Developer Plz Help (2) (3) (4)

(1) (2) (3) (4) (5) (6) (7) (8) (9) (Reply) (Go Down)

For Django Developer by Taofeekdboy(m): 7:35pm On Apr 24, 2020
I created this thread for Django aspirants, intermediate and experienced Django developers to share knowledge and projects that you have or been working on.

I have worked and been working on a lot of projects such as sport app, loan calculator, and employee management.
The one I just finished is just a social media clone project and it took a bit of my time.

The website is down below:
http://mysocialapp.pythonanywhere.com
If you are interested, you can Check and leave your comments as well.

So let's share ideas and knowledge.....

http://tlinker.pythonanywhere.com
Two groups of teacher and student, a teacher can set questions for students to answer and also a teacher can prepare assignment for each student, getting the scores of each student and receiving their assignments. I am thinking of more functions to add to it tho

2 Likes 1 Share

Re: For Django Developer by yuno01: 8:05pm On Apr 24, 2020
I love your work..I am planning on achieving such with python and django soon
..
This will inspire me to keep striving
Re: For Django Developer by clarknull(m): 8:11pm On Apr 24, 2020
yuno01:
I love your work..I am planning on achieving such with python and django soon
..
This will inspire me to keep striving

When you are ready, join us for here
https://discord./9PT9JCU
Re: For Django Developer by yuno01: 8:15pm On Apr 24, 2020
clarknull:


When you are ready, join us for here
https://discord./9PT9JCU

OK...following the link now
Re: For Django Developer by Taofeekdboy(m): 8:25pm On Apr 24, 2020
yuno01:
I love your work..I am planning on achieving such with python and django soon
..
This will inspire me to keep striving
Thank you bro. Yes, you can do it, if you need any assistance on that, I'm available.
Re: For Django Developer by Nobody: 9:17pm On Apr 24, 2020
I hate anything framework
Re: For Django Developer by Taofeekdboy(m): 9:27pm On Apr 24, 2020
peterangelo:
I hate anything framework
Please, kindly state your reasons for hating it and also what are yoy using to develop maybe we can learn one or two.
Re: For Django Developer by LSarcastic: 2:23am On Apr 25, 2020
Taofeekdboy:

Please, kindly state your reasons for hating it and also what are yoy using to develop maybe we can learn one or two.

He's probably a PHP guy grin

1 Like

Re: For Django Developer by Collinsanele: 11:21am On Apr 25, 2020
Taofeekdboy:
I created this thread for Django aspirants, intermediate and experienced Django developers to share knowledge and projects that you have or been working on.

I have worked and been working on a lot of projects such as sport app, loan calculator, and employee management.
The one I just finished is just a social media clone project and it took a bit of my time.

The website is down below:
http://mysocialapp.pythonanywhere.com
If you are interested, you can Check and leave your comments as well.

So let's share ideas and knowledge.....

Talking about Django, I have started using it.
I don't just know why, but I prefer using function based views. What's your preference guys

1 Like

Re: For Django Developer by Taofeekdboy(m): 11:54am On Apr 25, 2020
Collinsanele:


Talking about Django, I have started using it.
I don't just know why, but I prefer using function based views. What's your preference guys
Bro, we are in the same boat, I love writing my views in functions because I will be able to express myself without initiating anything.

All my Django projects was written in function based views, unless I am using DRF, then I write in class based views.
Function based views has been my savior.

1 Like

Re: For Django Developer by Collinsanele: 12:18pm On Apr 25, 2020
Taofeekdboy:

Bro, we are in the same boat, I love writing my views in functions because I will be able to express myself without initiating anything.

All my Django projects was written in function based views, unless I am using DRF, then I write in class based views.
Function based views has been my savior.

Nice!
So it's not only me.
With function based views, I can be in total control and be flexible.

For forms, I prefer using ModelForm if possible.
Re: For Django Developer by Taofeekdboy(m): 12:32pm On Apr 25, 2020
Collinsanele:


Nice!
So it's not only me.
With function based views, I can be in total control and be flexible.

For forms, I prefer using ModelForm if possible.
Yes. I agree with you.
Mostly forms are inheriting from ModelForm unless you are using a form that does nothing with your model or you just want to simplify things, rather than using forms and later incorporate it to your Model. It might be time consuming tho.

1 Like

Re: For Django Developer by Badilstical(m): 12:39pm On Apr 25, 2020
Taofeekdboy:
I created this thread for Django aspirants, intermediate and experienced Django developers to share knowledge and projects that you have or been working on.

I have worked and been working on a lot of projects such as sport app, loan calculator, and employee management.
The one I just finished is just a social media clone project and it took a bit of my time.

The website is down below:
http://mysocialapp.pythonanywhere.com
If you are interested, you can Check and leave your comments as well.

So let's share ideas and knowledge.....
pls i have an issue with image i deployed on herokuapp did you ise pillow or cloudinary for your image management. Pls advice
Re: For Django Developer by Taofeekdboy(m): 1:06pm On Apr 25, 2020
Badilstical:
pls i have an issue with image i deployed on herokuapp did you ise pillow or cloudinary for your image management. Pls advice
When deploying to heroku, you have to manage your media files somewhere else, because heroku use dynos and it restarts the dynos everyday and can only serve static files.
You can use different cloud hosting sites but the one I prefer most is AWS.

1 Like

Re: For Django Developer by Collinsanele: 1:41pm On Apr 25, 2020
Taofeekdboy:

Yes. I agree with you.
Mostly forms are inheriting from ModelForm unless you are using a form that does nothing with your model or you just want to simplify things, rather than using forms and later incorporate it to your Model. It might be time consuming tho.

The part in Django that I am still struggling with is user registration, login and logout.

I have noticed most things are based on oop (classes) and inheritance.
Re: For Django Developer by Taofeekdboy(m): 1:46pm On Apr 25, 2020
Collinsanele:


The part in Django that I am still struggling with is user registration, login and logout.

I have noticed most things are based on oop (classes) and inheritance.
It is not that hard, even I use function based views for my user registration, I just use default django Auth user authentication with my custom settings...
If you need my assistance on that, I will be glad to be of help.

1 Like

Re: For Django Developer by kensmoney(m): 2:16pm On Apr 25, 2020
Collinsanele:


Talking about Django, I have started using it.
I don't just know why, but I prefer using function based views. What's your preference guys

Me too, I love function base view.
I dont like class base though it make u write less code

1 Like

Re: For Django Developer by clarknull(m): 5:54pm On Apr 25, 2020
Collinsanele:


Talking about Django, I have started using it.
I don't just know why, but I prefer using function based views. What's your preference guys

I prefer class based view
I guess I'm just used to classes
Re: For Django Developer by Taofeekdboy(m): 6:18pm On Apr 25, 2020
clarknull:


I prefer class based view
I guess I'm just used to classes
Some people prefer it to fbv because of writing less code but I find it confusing when i want to implement a lot of functionalities in my projects.
Re: For Django Developer by clarknull(m): 9:42am On Apr 26, 2020
Taofeekdboy:

Some people prefer it to fbv because of writing less code but I find it confusing when i want to implement a lot of functionalities in my projects.

Maybe it's confusing to you cos you are not used to it

I could show you the little I know if you're interested
Re: For Django Developer by Taofeekdboy(m): 11:41am On Apr 26, 2020
clarknull:


Maybe it's confusing to you cos you are not used to it

I could show you the little I know if you're interested
Definitely, we search for more knowledge at every possibilities.
Re: For Django Developer by Taofeekdboy(m): 9:07pm On Apr 28, 2020
Here comes another project during this lock down.
A combination of React and Django..
It is about a musical app where you stream and add songs via album.
Kindly check it out and leave your comments. Thanks...
https://legacymusic.herokuapp.com

5 Likes 1 Share

Re: For Django Developer by Samcent: 9:14am On Apr 29, 2020
Taofeekdboy:
Here comes another project during this lock down.
A combination of React and Django..
It is about a musical app where you stream and add songs via album.
Kindly check it out and leave your comments. Thanks...
https://legacymusic.herokuapp.com
Good work!

Did you build an api for this app?
Also, did you have to pay for the hosting on heroku?
Re: For Django Developer by Taofeekdboy(m): 9:21am On Apr 29, 2020
Samcent:
Good work!

Did you build an api for this app?
Also, did you have to pay for the hosting on heroku?
Yes bro, the backend is using Django while the frontend is using React.
On heroku, hosting is free because they will give you their subdomain, that's why .herokuapp is there but you can add your own custom domain from them hosting websites.
Thanks for your comment BTW.
Re: For Django Developer by Samcent: 11:40am On Apr 29, 2020
Thanks for sharing. I am adding building django web api to my skill set in this lock down.

Apologies if I am asking too many questions.
Is the db mysql?

When hosting on pythonanywhere, as long as your db is postgres, you must part with some money even if you are using their subdomain.

1 Like

Re: For Django Developer by Taofeekdboy(m): 12:31pm On Apr 29, 2020
Samcent:
Thanks for sharing. I am adding building django web api to my skill set in this lock down.

Apologies if I am asking too many questions.
Is the db mysql?

When hosting on pythonanywhere, as long as your db is postgres, you must part with some money even if you are using their subdomain.

I used default django database which is dbsqlite3 and on heroku, there is a free addon database given to you if you wanna host your app which is postgres.

You can use postgres from the start with Django if you wanna host on heroku but hosting your app on heroku comes with a free database which is postgres.

Pythonanywhere uses mysql for their regular users but postgres for paid plans only whereas heroku is not..
Hope this helps....

2 Likes 1 Share

Re: For Django Developer by Samcent: 4:29pm On Apr 29, 2020
Taofeekdboy:

I used default django database which is dbsqlite3 and on heroku, there is a free addon database given to you if you wanna host your app which is postgres.

You can use postgres from the start with Django if you wanna host on heroku but hosting your app on heroku comes with a free database which is postgres.

Pythonanywhere use mysql for their regular users but postgres for paid plans only whereas heroku is not..
Hope this helps....
This info will be very helpful indeed. Wondering why I have been shying away from heroku all this while.
Thanks so very much and keep up with the good work.
Re: For Django Developer by Taofeekdboy(m): 6:04pm On Apr 29, 2020
Samcent:
This info will be very helpful indeed. Wondering why I have been shying away from heroku all this while.
Thanks so very much and keep up with the good work.

Thanks bro. I wish you all the best.
Re: For Django Developer by Collinsanele: 11:02pm On Apr 29, 2020
Taofeekdboy:
Here comes another project during this lock down.
A combination of React and Django..
It is about a musical app where you stream and add songs via album.
Kindly check it out and leave your comments. Thanks...
https://legacymusic.herokuapp.com

It's dope bro
Re: For Django Developer by Taofeekdboy(m): 9:34am On Apr 30, 2020
Collinsanele:


It's dope bro
Thank you brother.
Re: For Django Developer by Jummate(m): 6:38pm On Apr 30, 2020
Taofeekdboy:
I created this thread for Django aspirants, intermediate and experienced Django developers to share knowledge and projects that you have or been working on.

I have worked and been working on a lot of projects such as sport app, loan calculator, and employee management.
The one I just finished is just a social media clone project and it took a bit of my time.

The website is down below:
http://mysocialapp.pythonanywhere.com
If you are interested, you can Check and leave your comments as well.

So let's share ideas and knowledge.....

Great job bro!

1 Like

Re: For Django Developer by Badilstical(m): 6:54pm On Apr 30, 2020
Taofeekdboy:
Here comes another project during this lock down.
A combination of React and Django..
It is about a musical app where you stream and add songs via album.
Kindly check it out and leave your comments. Thanks...
https://legacymusic.herokuapp.com
Nice work bro,


Heroku?? How did you host your static files?

(1) (2) (3) (4) (5) (6) (7) (8) (9) (Reply)

Programming Projects (individual) / Best Laptops For Programmers / ALC 2.0 Is Here

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 45
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.