Open Design Platform
dev url : http://api.opendesign.local
- dev url: http://opendesign.local (have to manually build everything
cd /frondend
thenyarn build
) - dev livereload:
cd /frondend
thenyarn start
username : opendesign password : opendesign database : opendesign
Follow the instructions provided below for docker based development setup.
Once project is cloned.
$ ./init.sh
$ make install
$ make test
127.0.0.1 opendesign.local
127.0.0.1 api.opendesign.local
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
.