diff --git a/.github/workflows/master_grades-app.yml b/.github/workflows/master_grades-app.yml deleted file mode 100644 index bc8c027..0000000 --- a/.github/workflows/master_grades-app.yml +++ /dev/null @@ -1,35 +0,0 @@ -# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy -# More GitHub Actions for Azure: https://github.com/Azure/actions - -name: Build and deploy Python app to Azure Web App - grades-app - -on: - push: - branches: - - master - workflow_dispatch: - -jobs: - build-and-deploy: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@master - - - name: Set up Python version - uses: actions/setup-python@v1 - with: - python-version: '3.7' - - - name: Build using AppService-Build - uses: azure/appservice-build@v2 - with: - platform: python - platform-version: '3.7' - - - name: 'Deploy to Azure Web App' - uses: azure/webapps-deploy@v2 - with: - app-name: 'grades-app' - slot-name: 'production' - publish-profile: ${{ secrets.AzureAppService_PublishProfile_eb7c1f1c6a274a8c904979f59a891c40 }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index 4e61aa0..0000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Publish to registry -on: - push: - branches: - - master -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - - name: Publish to registry - uses: elgohr/Publish-Docker-Github-Action@v5 - with: - name: gradestats - dockerfile: Dockerfile - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - registry: registry.online.ntnu.no - workdir: . - tag_names: true diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index 58ac811..c160507 100644 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -8,8 +8,7 @@ exec uwsgi --chdir=/srv/app \ --module=gradestats.wsgi:application \ --env DJANGO_SETTINGS_MODULE=gradestats.settings.prod \ --master --pidfile=/tmp/gradestats.pid \ - --socket=0.0.0.0:8080 \ - --http=0.0.0.0:8081 \ + --http=0.0.0.0:3000 \ --processes=5 \ --harakiri=300 \ --max-requests=5000 \