mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 08:53:00 +08:00
9 lines
251 B
Bash
9 lines
251 B
Bash
|
#! /usr/bin/env bash
|
||
|
# use bash for child process and source for same bash process
|
||
|
__dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||
|
|
||
|
# run migrate
|
||
|
source ${__dir}/migrate.sh "ini felicity $(date)"
|
||
|
|
||
|
# then start server
|
||
|
source ${__dir}/runserver.sh
|