Skip to content

AlexStansfield/opendesign

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

opendesign

Open Design Platform

Backend Information

dev url : http://api.opendesign.local

Frontend Information

  • dev url: http://opendesign.local (have to manually build everything cd /frondend then yarn build)
  • dev livereload: cd /frondend then yarn start

Database Credentials

username : opendesign password : opendesign database : opendesign

Docker Dev Box Setup

Follow the instructions provided below for docker based development setup.

Once project is cloned.

Setup

$ ./init.sh

Inside the Dev Box

$ make install
$ make test

Add host files

127.0.0.1 opendesign.local
127.0.0.1 api.opendesign.local

Connect to other boxes from dev box.

From project root directory, use this command

$ docker run -ti --rm -v $(pwd):/vagrant --net=opendesign opendesign/development:1.0

For simplicity, you can put this command into the alias and source it in .bashrc as alias in-backend="docker run -ti --rm -v /projects/opendesign:/vagrant --net=opendesign opendesign/development:1.0"

Then you can simply execute as in-backend.