mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
python -> python3
This commit is contained in:
parent
9cdc5a1fa1
commit
fa1644ed2c
@ -32,7 +32,7 @@ echo "Starting InvenTree server..."
|
|||||||
|
|
||||||
# Wait for the database to be ready
|
# Wait for the database to be ready
|
||||||
cd ${INVENTREE_HOME}/InvenTree
|
cd ${INVENTREE_HOME}/InvenTree
|
||||||
python manage.py wait_for_db
|
python3 manage.py wait_for_db
|
||||||
|
|
||||||
sleep 10
|
sleep 10
|
||||||
|
|
||||||
@ -40,10 +40,10 @@ echo "Running InvenTree database migrations..."
|
|||||||
|
|
||||||
# We assume at this stage that the database is up and running
|
# We assume at this stage that the database is up and running
|
||||||
# Ensure that the database schema are up to date
|
# Ensure that the database schema are up to date
|
||||||
python manage.py check || exit 1
|
python3 manage.py check || exit 1
|
||||||
python manage.py migrate --noinput || exit 1
|
python3 manage.py migrate --noinput || exit 1
|
||||||
python manage.py migrate --run-syncdb || exit 1
|
python3 manage.py migrate --run-syncdb || exit 1
|
||||||
python manage.py clearsessions || exit 1
|
python3 manage.py clearsessions || exit 1
|
||||||
|
|
||||||
# Launch a development server
|
# Launch a development server
|
||||||
python manage.py runserver ${INVENTREE_WEB_ADDR}:${INVENTREE_WEB_PORT}
|
python3 manage.py runserver ${INVENTREE_WEB_ADDR}:${INVENTREE_WEB_PORT}
|
||||||
|
@ -11,9 +11,9 @@ sleep 5
|
|||||||
|
|
||||||
# Wait for the database to be ready
|
# Wait for the database to be ready
|
||||||
cd InvenTree
|
cd InvenTree
|
||||||
python manage.py wait_for_db
|
python3 manage.py wait_for_db
|
||||||
|
|
||||||
sleep 10
|
sleep 10
|
||||||
|
|
||||||
# Now we can launch the background worker process
|
# Now we can launch the background worker process
|
||||||
python manage.py qcluster
|
python3 manage.py qcluster
|
||||||
|
@ -23,7 +23,7 @@ echo "Starting InvenTree server..."
|
|||||||
|
|
||||||
# Wait for the database to be ready
|
# Wait for the database to be ready
|
||||||
cd $INVENTREE_MNG_DIR
|
cd $INVENTREE_MNG_DIR
|
||||||
python manage.py wait_for_db
|
python3 manage.py wait_for_db
|
||||||
|
|
||||||
sleep 10
|
sleep 10
|
||||||
|
|
||||||
@ -31,12 +31,12 @@ echo "Running InvenTree database migrations and collecting static files..."
|
|||||||
|
|
||||||
# We assume at this stage that the database is up and running
|
# We assume at this stage that the database is up and running
|
||||||
# Ensure that the database schema are up to date
|
# Ensure that the database schema are up to date
|
||||||
python manage.py check || exit 1
|
python3 manage.py check || exit 1
|
||||||
python manage.py migrate --noinput || exit 1
|
python3 manage.py migrate --noinput || exit 1
|
||||||
python manage.py migrate --run-syncdb || exit 1
|
python3 manage.py migrate --run-syncdb || exit 1
|
||||||
python manage.py prerender || exit 1
|
python3 manage.py prerender || exit 1
|
||||||
python manage.py collectstatic --noinput || exit 1
|
python3 manage.py collectstatic --noinput || exit 1
|
||||||
python manage.py clearsessions || exit 1
|
python3 manage.py clearsessions || exit 1
|
||||||
|
|
||||||
# Now we can launch the server
|
# Now we can launch the server
|
||||||
gunicorn -c $INVENTREE_HOME/gunicorn.conf.py InvenTree.wsgi -b 0.0.0.0:$INVENTREE_WEB_PORT
|
gunicorn -c $INVENTREE_HOME/gunicorn.conf.py InvenTree.wsgi -b 0.0.0.0:$INVENTREE_WEB_PORT
|
@ -6,9 +6,9 @@ sleep 5
|
|||||||
|
|
||||||
# Wait for the database to be ready
|
# Wait for the database to be ready
|
||||||
cd $INVENTREE_MNG_DIR
|
cd $INVENTREE_MNG_DIR
|
||||||
python manage.py wait_for_db
|
python3 manage.py wait_for_db
|
||||||
|
|
||||||
sleep 10
|
sleep 10
|
||||||
|
|
||||||
# Now we can launch the background worker process
|
# Now we can launch the background worker process
|
||||||
python manage.py qcluster
|
python3 manage.py qcluster
|
Loading…
Reference in New Issue
Block a user