Skip to content

kazukitamaribuchi/bandue

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bandue



Introduction

bandue is a revolutionary communication tool to connect with everyone who makes music


Bandue Startup Procedure

Please start by the following procedure

1. Docker Install

2. Command Input

Enter the command in the following procedure

  1. Dockerfile Build
    $ docker build -t bandue:bandue .

  2. Create Container
    $ docker run -itd -p 8000:8000 -p 8080:8080 --name bandue -v <your-volume-path>:/home/bandue/ bandue:bandue
    ※For <your-volume-path>, enter the directory you want to share with the absolute path

  3. Server Start-up
    $ docker exec -it bandue bash
    $ cd server
    $ python manage.py makemigrations api
    $ python manage.py migrate
    $ python manage.py loaddata fixture-age.json
    $ python manage.py runserver 0.0.0.0:8000

  4. Client Start-up
    $ docker exec -it bandue bash
    $ cd client && yarn upgrade
    $ yarn serve

  5. Redis Start-up
    $ docker run --rm -dp 6379:6379 redis


Author

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Vue 51.7%
  • Python 41.5%
  • JavaScript 4.9%
  • HTML 1.3%
  • Dockerfile 0.4%
  • SCSS 0.1%
  • Shell 0.1%