I created my first App after learning Django Framework. It was very interesting for me. I learned more things as setup Django and workspace in VS Code, creat admin panel, views, models, forms, urls, and work with templates.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
Python 3 Django 3
- Clone the repository to your local machine
git clone https://github.com/SanjarH/To-Do-App.git
- Change into the project directory
cd todoApp
- Create a virtual environment and activate it
python3 -m venv env source env/bin/activate
- Install the required packages
pip install -r requirements.txt
- Run the migrations
python manage.py migrate
-
Start the development server
-
Visit http://127.0.0.1:8000/ in your web browser to see the to-do application in action.
Django - The web framework used SQLite - The database system used
Sanjar Hoshimi