An open API service indexing awesome lists of open source software.

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.

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/)