A seamless integration of Vue.js, Django, Vite, PostgreSQL, and TailwindCSS to kick-start your full-stack application development.
StarterPack
│
├── backend
│ ├── backend
│ │ └── settings.py
│ ├── requirements.txt
│ └── ...
│
└── frontend
├── vite.config.js
├── tailwind.config.js
├── index.html
└── ...
Backend (Django + PostgreSQL)
Navigate to the backend directory:
cd backend
Install the required Python packages:
pip install -r requirements.txt
Setup the database (ensure PostgreSQL is running):
python manage.py migrate
Frontend (Vue + Vite + Tailwind)
Navigate to the frontend directory:
cd frontend
Install the necessary npm packages:
npm install
Run the Vue app:
npm run dev
This starter pack comes with various Vue components such as:
Feel free to fork this project, and raise PRs for any enhancements.
MIT
Happy coding!