https://github.com/dori-dev/django-vue
The fullstack weblog with Django & Vue.
https://github.com/dori-dev/django-vue
Last synced: 4 months ago
JSON representation
The fullstack weblog with Django & Vue.
- Host: GitHub
- URL: https://github.com/dori-dev/django-vue
- Owner: dori-dev
- Created: 2023-04-22T06:41:00.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-22T18:55:35.000Z (about 3 years ago)
- Last Synced: 2025-08-30T05:36:58.370Z (10 months ago)
- Language: Vue
- Size: 277 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fullstack Django & Vue
The fullstack weblog with Django & Vue.
#
# How to Run Project
## Download Codes
```
git clone https://github.com/dori-dev/django-vue.git
```
```
cd django-vue
```
## Build Virtual Environment
```
python -m venv env
```
```
source env/bin/activate
```
## Install Project Requirements
```
pip install -r requirements.txt
```
## BackEnd
```
cd backend
```
## Migrate Models
```
python manage.py migrate
```
## Add Super User
```
python manage.py createsuperuser
```
## Run Project
```
python manage.py runserver
```
## Frontend
```
cd ..
cd frontend
```
## Project Setup
```
npm install
```
## Compiles Development
```
npm run serve
```
### Compiles for Production
```
npm run build
npx serve dist
```
## Open On Browser
Development: [localhost:8080](http://localhost:8080/)
Production: [localhost:3000](http://localhost:3000/)
#
## Links
Download Source Code: [Click Here](https://github.com/dori-dev/django-vue/archive/refs/heads/master.zip)
My Github Account: [Click Here](https://github.com/dori-dev/)