Skip to content
This repository has been archived by the owner on Jun 25, 2022. It is now read-only.
/ my_recipes Public archive

Demo app for Django backend + Vue frontend

Notifications You must be signed in to change notification settings

PSU-OIT-ARC/my_recipes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

My Recipes

Demo application showing use of Django as backend and Vue/Nuxt.js as frontend.

Reference: https://scotch.io/tutorials/building-a-universal-application-with-nuxtjs-and-django

The Django backend is located in the api/ directory.

The Vue/Nuxt frontend is located in the client/ directory.

Quick Start

Create a Python Virtual Environment

Install the packages in requirements.txt

python3 -m venv env
source env/bin/activate
pip install -r requirements.txt

Run the Django migrations

cd api
python manage.py migrate

Run the app

  1. Start the Django app

    cd api
    python manage.py runserver
  2. Start the Vue app

    In a new Terminal:

    cd client
    npm run dev
  3. Open the app in a browser: http://localhost:3000

About

Demo app for Django backend + Vue frontend

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published