https://github.com/uiu-developers-hub/portfolio-card-maker
https://github.com/uiu-developers-hub/portfolio-card-maker
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/uiu-developers-hub/portfolio-card-maker
- Owner: UIU-Developers-Hub
- License: mit
- Created: 2024-11-25T19:42:55.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-06T19:37:15.000Z (over 1 year ago)
- Last Synced: 2025-02-07T00:17:56.145Z (over 1 year ago)
- Language: TypeScript
- Homepage: https://portfolio-card-maker.vercel.app
- Size: 1.75 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Portfolio Maker Website
## Current Bugs
- 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.
## Features
- User authentication and authorization
- Profile management
- Portfolio customization
- Project showcase
- Skills and experience sections
- Education history
- Social media integration
- Responsive design
- Digital Business Card
## Tech Stack
### Frontend
- Next.js 13+
- TypeScript
- React Context for state management
- Tailwind CSS for styling
### Backend
- Django 5.0
- Django REST Framework
- Simple JWT for authentication
- SQLite database (can be configured for PostgreSQL)
## Getting Started
### Prerequisites
- Python 3.8+
- Node.js 16+
- npm or yarn
### Backend Setup
1. Navigate to the backend directory:
```bash
cd backend
```
2. Create a virtual environment:
```bash
python -m venv env
source env/bin/activate # On Windows: env\Scripts\activate
```
3. Install dependencies:
```bash
pip install -r requirements.txt
```
4. Run migrations:
```bash
python3 manage.py migrate
```
5. Start the development server:
```bash
python3 manage.py runserver 9090
```
### Frontend Setup
1. Navigate to the frontend directory:
```bash
cd frontend
```
2. Install dependencies:
```bash
npm install
# or
yarn install
```
3. Start the development server:
```bash
npm run dev
# or
yarn dev
```
## Environment Variables
### Backend (.env)
```
SECRET_KEY=your_secret_key
DEBUG=True
ALLOWED_HOSTS=localhost,127.0.0.1
```
### Frontend (.env.local)
```
NEXT_PUBLIC_API_URL=http://localhost:9090
```
## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
## License
[MIT](https://choosealicense.com/licenses/mit/)