contacts-list app template
This is a simple contacts list application that allows you to add, edit, search and delete contacts. It is built on Django framework and uses a Postgres database to store the contacts.
- Clone the repository using the following command
git clone
- Create a virtual environment and activate it
python3 -m venv venv
source venv/bin/activate
- Install the dependencies
pip install -r requirements.txt
- Create a Postgres database and add the credentials to the .env file
- Run the migrations
python manage.py migrate
- Run the application
python manage.py runserver
Congrats! The application is now running 🥳