My first django web app

Hello guys, I'm happy to make this django login\_system web app. It has database(CRUD). I'm happy to upload my first django web app to github. I also learnt git and pushed from cmd. Django learning continues. Feels good, lol.

Github : [https://github.com/faith-ware/login\_system](https://github.com/faith-ware/login_system)

https://preview.redd.it/2cw1wfas1h161.png?width=1536&format=png&auto=webp&s=ee639637a41e5c673d1d6e2728734a103aa7a111

https://preview.redd.it/icbx5kas1h161.png?width=1537&format=png&auto=webp&s=265f68478b2ecf47aafc0d000da7df5b672e63a7

1 thought on “My first django web app”

  1. Looks cool! One quick tip, I guess you have just started learning git, so I suggest you check put what a .gitignore file is. Basically, it lets you leave some files out of the repository, so they just exist in your computer and they don’t appear on github.

    This way, you can leave the database out of the repo, to avoid everyone from having access to your user’s data. That plus the secret key being public would give anyone access to your user’s **raw password**. To avoid this, you can use a .env file to keep that secret. Brb with a short tutorial on the latter

    [Here’s](https://pypi.org/project/python-dotenv/) the library i use for SECRET_KEY and similar stuff

    Reply

Leave a Comment