- Python (3.5, 3.6, 3.7, 3.8, 3.9)
- Django (3.1)
docker-compose up -d --build
git clone https://github.com/hemanth-sp/user_activity.git
cd user_activity
python3.8 -m venv venv
source venv/bin/activate
pip3 install -r requirements.txt
python3 manage.py migrate
python3 manage.py runserver
python manage.py populate_dummy_data
or specify the number of user objects to create by default 3, use below command to add more data for example 10 user objects
python manage.py populate_dummy_data --users 10
(localhost)
(live)
- factory-boy used to populate dummy or fake data in management command