2014-04-06 18:11:18 +02:00
|
|
|
#!/bin/sh -
|
2014-04-05 16:46:32 +02:00
|
|
|
# Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
# Use of this source code is governed by a MIT-style
|
|
|
|
# license that can be found in the LICENSE file.
|
|
|
|
#
|
2015-02-03 18:42:34 +01:00
|
|
|
# MUST EXECUTE THIS AT ROOT DIRECTORY: ./scripts/start.sh
|
2014-03-31 09:54:15 +02:00
|
|
|
#
|
2014-08-30 15:12:53 +02:00
|
|
|
IFS='
|
2014-04-06 18:11:18 +02:00
|
|
|
'
|
|
|
|
PATH=/bin:/usr/bin:/usr/local/bin
|
|
|
|
USER=$(whoami)
|
2014-07-15 04:20:05 +02:00
|
|
|
HOME=$(grep "^$USER:" /etc/passwd | cut -d: -f6)
|
2014-04-06 18:11:18 +02:00
|
|
|
export USER HOME PATH
|
|
|
|
|
2015-01-17 22:52:42 +01:00
|
|
|
cd "$(dirname "$0")/.." && exec ./gogs web
|