Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,12 @@ services:
environment:
- DJANGO_ENV=docker
- DJANGO_ENV_PATH=/home/sml-app/install/config/env
- DJANGO_DEBUGGER=True
- DEBUG=True
- PORT_PTVSD=8005
#command: python manage.py runserver 0.0.0.0:8000 --noreload
# --workers 4
command: gunicorn --bind 0.0.0.0:8000 --timeout 3600 --max-requests 250 --reload server.wsgi:application
command: python manage.py runserver 0.0.0.0:8000 --noreload
# --workers 4
# for gunicorn TODO need additionally serve static files
# command: gunicorn --bind 0.0.0.0:8000 --timeout 3600 --max-requests 250 --reload server.wsgi:application
ports:
- "8000:8000"
depends_on:
Expand Down Expand Up @@ -99,7 +100,7 @@ services:
target: /var/run/docker.sock
environment:
- DJANGO_ENV=docker
- DJANGO_DEBUGGER=True
- DEBUG=True
- PORT_PTVSD=6902
- CELERY_RDB_PORT=6900
- CELERY_RDB_HOST=0.0.0.0
Expand Down
35 changes: 35 additions & 0 deletions src/server/datamanager/migrations/0004_lock_schema.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
"""
Copyright 2017-2025 SensiML Corporation

This file is part of SensiML™ Piccolo AI™.

SensiML Piccolo AI is free software: you can redistribute it and/or
modify it under the terms of the GNU Affero General Public License
as published by the Free Software Foundation, either version 3 of
the License, or (at your option) any later version.

SensiML Piccolo AI is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public
License along with SensiML Piccolo AI. If not, see <https://www.gnu.org/licenses/>.
"""

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("datamanager", "0003_add_crosstab_tablefunc"),
]

operations = [
migrations.AddField(
model_name="project",
name="lock_schema",
field=models.BooleanField(default=False),
),
]
18 changes: 0 additions & 18 deletions src/server/datamanager/migrations/0005_lock_schema.py

This file was deleted.

Loading