mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
11 lines
207 B
Bash
11 lines
207 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
sh docker-entrypoint.sh
|
||
|
|
|
||
|
|
# Needed to avoid "webpack-dev-server not found" error
|
||
|
|
yarn install --check-files
|
||
|
|
|
||
|
|
# Launch Rails server and webpack-dev-server using Foreman
|
||
|
|
foreman start -p 3000
|