- Profile updates are not saving to the database. Investigating the data transmission and backend handling.
A full-stack web application for creating and managing professional portfolios. Built with Next.js and Django.
- User authentication and authorization
- Profile management
- Portfolio customization
- Project showcase
- Skills and experience sections
- Education history
- Social media integration
- Responsive design
- Digital Business Card
- Next.js 13+
- TypeScript
- React Context for state management
- Tailwind CSS for styling
- Django 5.0
- Django REST Framework
- Simple JWT for authentication
- SQLite database (can be configured for PostgreSQL)
- Python 3.8+
- Node.js 16+
- npm or yarn
-
Navigate to the backend directory:
cd backend
-
Create a virtual environment:
python -m venv env source env/bin/activate # On Windows: env\Scripts\activate
-
Install dependencies:
pip install -r requirements.txt
-
Run migrations:
python3 manage.py migrate
-
Start the development server:
python3 manage.py runserver 9090
-
Navigate to the frontend directory:
cd frontend
-
Install dependencies:
npm install # or yarn install
-
Start the development server:
npm run dev # or yarn dev
SECRET_KEY=your_secret_key
DEBUG=True
ALLOWED_HOSTS=localhost,127.0.0.1
NEXT_PUBLIC_API_URL=http://localhost:9090
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.