Musicial is a social media website based on photos and music developed using Django and Bootstrap.
- Install Anaconda Navigator
- Clone/Download the repository
- Open the Anaconda prompt terminal
- Perform the upcoming operations in the terminal
- Navigate to the drive where you downloaded the repository (e.g - D drive)
D:- Create a virtual environment for the application with python enabled
conda create -n musicial python=3.7.5- Activate the virtual environment
conda activate musicial- Install Django
conda install django==2.1.5- Install Pillow
conda install pillow- Navigate to Musicial/ITECH
cd Musicial/ITECH- Make your migrations
python manage.py makemigrations
python manage.py migrate- Create a new superuser
python manage.py createsuperuser- Start the application server
python manage.py runserver- The website can now be accessed via the following link: http://127.0.0.1:8000/musicial
Click the link to watch a demonstration of the website
