Created a dynamic content aggregator akin to Unsplash, leveraging React.js for frontend and Django with Django Rest Framework for backend
Front end
- cd Frontend
- npm install
- npm install tailwindcss
- npm install formik yup
- npm install axios
- npm run build
Backend
- python -m venv venv (Create Virtualenv)
- venv\Scripts\activate (Activate Virtualenv)
- pip install -r requirements.txt (Install Dependencies)
- python manage.py migrate (Create New Database)
- python manage.py createsuperuser (Create Superadmin user)
- python manage.py runserver (Run server)