diff --git a/.gitignore b/.gitignore index 0a764a4..66072c7 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -env +virtualenv diff --git a/Dockerfile b/Dockerfile new file mode 100755 index 0000000..0d54b78 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,19 @@ +# Dockerfile + +# The first instruction is what image we want to base our container on +# We Use an official Python runtime as a parent image +FROM python:3.11-bookworm + +# Allows docker to cache installed dependencies between builds +COPY requirements.txt requirements.txt +RUN pip install --no-cache-dir -r requirements.txt + +# Mounts the application code to the image +COPY ./demo /app +WORKDIR /app + +EXPOSE 8000 + +# runs the production server +ENTRYPOINT ["python3", "manage.py"] +CMD ["runserver", "0.0.0.0:8000"] \ No newline at end of file diff --git a/demo/README.MD b/README.MD similarity index 57% rename from demo/README.MD rename to README.MD index 903db3f..57086e7 100644 --- a/demo/README.MD +++ b/README.MD @@ -1,13 +1,21 @@ -- Tutorial of django https://duckduckgo.com/?q=django+tutorial&iax=videos&ia=videos&iai=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3Dsm1mokevMWk -python3 -m venv env +-- Make a root folder named xy +python3 -m venv virtualenv +#### Activate the virutal environment +source virtualenv/bin/activate +#### Install django python3 -m pip install django +## Start the project +django-admin startproject demo +## install an app +python3 manage.py startapp migration -- Django calling Rest Services ? python3 manage.py newproject demo -django-admin startproject demo -python3 manage.py startapp banking + + python3 manage.py runserver diff --git a/demo/banking/__pycache__/__init__.cpython-311.pyc b/demo/banking/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index fbeada9..0000000 Binary files a/demo/banking/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/demo/banking/__pycache__/admin.cpython-311.pyc b/demo/banking/__pycache__/admin.cpython-311.pyc deleted file mode 100644 index 9c82ab9..0000000 Binary files a/demo/banking/__pycache__/admin.cpython-311.pyc and /dev/null differ diff --git a/demo/banking/__pycache__/apps.cpython-311.pyc b/demo/banking/__pycache__/apps.cpython-311.pyc deleted file mode 100644 index c2c8f98..0000000 Binary files a/demo/banking/__pycache__/apps.cpython-311.pyc and /dev/null differ diff --git a/demo/banking/__pycache__/models.cpython-311.pyc b/demo/banking/__pycache__/models.cpython-311.pyc deleted file mode 100644 index 61272ce..0000000 Binary files a/demo/banking/__pycache__/models.cpython-311.pyc and /dev/null differ diff --git a/demo/banking/__pycache__/urls.cpython-311.pyc b/demo/banking/__pycache__/urls.cpython-311.pyc deleted file mode 100644 index b9829ac..0000000 Binary files a/demo/banking/__pycache__/urls.cpython-311.pyc and /dev/null differ diff --git a/demo/banking/migrations/__pycache__/__init__.cpython-311.pyc b/demo/banking/migrations/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index ac81358..0000000 Binary files a/demo/banking/migrations/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/demo/db.sqlite3 b/demo/db.sqlite3 index 30c25b1..feadb86 100644 Binary files a/demo/db.sqlite3 and b/demo/db.sqlite3 differ diff --git a/demo/demo/__pycache__/__init__.cpython-311.pyc b/demo/demo/__pycache__/__init__.cpython-311.pyc index 7d46d1f..6b01935 100644 Binary files a/demo/demo/__pycache__/__init__.cpython-311.pyc and b/demo/demo/__pycache__/__init__.cpython-311.pyc differ diff --git a/demo/demo/__pycache__/settings.cpython-311.pyc b/demo/demo/__pycache__/settings.cpython-311.pyc index a541a85..b07754d 100644 Binary files a/demo/demo/__pycache__/settings.cpython-311.pyc and b/demo/demo/__pycache__/settings.cpython-311.pyc differ diff --git a/demo/demo/__pycache__/urls.cpython-311.pyc b/demo/demo/__pycache__/urls.cpython-311.pyc index 8098dba..7e14fb7 100644 Binary files a/demo/demo/__pycache__/urls.cpython-311.pyc and b/demo/demo/__pycache__/urls.cpython-311.pyc differ diff --git a/demo/demo/__pycache__/wsgi.cpython-311.pyc b/demo/demo/__pycache__/wsgi.cpython-311.pyc index cb31aa5..84dc60a 100644 Binary files a/demo/demo/__pycache__/wsgi.cpython-311.pyc and b/demo/demo/__pycache__/wsgi.cpython-311.pyc differ diff --git a/demo/demo/settings.py b/demo/demo/settings.py index a9d0db2..3db5cda 100644 --- a/demo/demo/settings.py +++ b/demo/demo/settings.py @@ -20,7 +20,7 @@ BASE_DIR = Path(__file__).resolve().parent.parent # See https://docs.djangoproject.com/en/5.0/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! -SECRET_KEY = 'django-insecure-$u*_j$i$smmznp+huzp09!%=y71)uet6=va4l^4g#e+*_3+orv' +SECRET_KEY = 'django-insecure-z$@7i%n)hn)=5-c8!%)y1-493jkohy8=s-xq8=iu(aud)xx0_+' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True @@ -37,7 +37,7 @@ INSTALLED_APPS = [ 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', - 'banking' + 'migration', ] MIDDLEWARE = [ diff --git a/demo/demo/urls.py b/demo/demo/urls.py index 20dfd98..1da78b3 100644 --- a/demo/demo/urls.py +++ b/demo/demo/urls.py @@ -16,11 +16,10 @@ Including another URLconf """ from django.contrib import admin from django.urls import path,include -from banking.views import migration_home +from migration.views import migration_home urlpatterns = [ path('admin/', admin.site.urls), - path('', include("banking.urls")), - path('migration/', migration_home) - , + path('', include("migration.urls")), + path('migration/', migration_home), ] diff --git a/demo/banking/__init__.py b/demo/migration/__init__.py similarity index 100% rename from demo/banking/__init__.py rename to demo/migration/__init__.py diff --git a/demo/migration/__pycache__/__init__.cpython-311.pyc b/demo/migration/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000..dce2ec9 Binary files /dev/null and b/demo/migration/__pycache__/__init__.cpython-311.pyc differ diff --git a/demo/migration/__pycache__/admin.cpython-311.pyc b/demo/migration/__pycache__/admin.cpython-311.pyc new file mode 100644 index 0000000..d53ef45 Binary files /dev/null and b/demo/migration/__pycache__/admin.cpython-311.pyc differ diff --git a/demo/migration/__pycache__/apps.cpython-311.pyc b/demo/migration/__pycache__/apps.cpython-311.pyc new file mode 100644 index 0000000..f9c26ca Binary files /dev/null and b/demo/migration/__pycache__/apps.cpython-311.pyc differ diff --git a/demo/migration/__pycache__/models.cpython-311.pyc b/demo/migration/__pycache__/models.cpython-311.pyc new file mode 100644 index 0000000..f2ae925 Binary files /dev/null and b/demo/migration/__pycache__/models.cpython-311.pyc differ diff --git a/demo/migration/__pycache__/urls.cpython-311.pyc b/demo/migration/__pycache__/urls.cpython-311.pyc new file mode 100644 index 0000000..540bedd Binary files /dev/null and b/demo/migration/__pycache__/urls.cpython-311.pyc differ diff --git a/demo/banking/__pycache__/views.cpython-311.pyc b/demo/migration/__pycache__/views.cpython-311.pyc similarity index 73% rename from demo/banking/__pycache__/views.cpython-311.pyc rename to demo/migration/__pycache__/views.cpython-311.pyc index 2a07df0..4601e59 100644 Binary files a/demo/banking/__pycache__/views.cpython-311.pyc and b/demo/migration/__pycache__/views.cpython-311.pyc differ diff --git a/demo/banking/admin.py b/demo/migration/admin.py similarity index 100% rename from demo/banking/admin.py rename to demo/migration/admin.py diff --git a/demo/banking/apps.py b/demo/migration/apps.py similarity index 62% rename from demo/banking/apps.py rename to demo/migration/apps.py index 10214b5..0a607f7 100644 --- a/demo/banking/apps.py +++ b/demo/migration/apps.py @@ -1,6 +1,6 @@ from django.apps import AppConfig -class BankingConfig(AppConfig): +class MigrationConfig(AppConfig): default_auto_field = 'django.db.models.BigAutoField' - name = 'banking' + name = 'migration' diff --git a/demo/banking/migrations/__init__.py b/demo/migration/migrations/__init__.py similarity index 100% rename from demo/banking/migrations/__init__.py rename to demo/migration/migrations/__init__.py diff --git a/demo/migration/migrations/__pycache__/__init__.cpython-311.pyc b/demo/migration/migrations/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000..4fd9210 Binary files /dev/null and b/demo/migration/migrations/__pycache__/__init__.cpython-311.pyc differ diff --git a/demo/banking/models.py b/demo/migration/models.py similarity index 100% rename from demo/banking/models.py rename to demo/migration/models.py diff --git a/demo/banking/templates/migration.html b/demo/migration/templates/migration.html similarity index 100% rename from demo/banking/templates/migration.html rename to demo/migration/templates/migration.html diff --git a/demo/banking/tests.py b/demo/migration/tests.py similarity index 100% rename from demo/banking/tests.py rename to demo/migration/tests.py diff --git a/demo/banking/urls.py b/demo/migration/urls.py similarity index 100% rename from demo/banking/urls.py rename to demo/migration/urls.py diff --git a/demo/banking/views.py b/demo/migration/views.py similarity index 100% rename from demo/banking/views.py rename to demo/migration/views.py diff --git a/demo/starter/build.sh b/demo/starter/build.sh new file mode 100755 index 0000000..7a380f3 --- /dev/null +++ b/demo/starter/build.sh @@ -0,0 +1 @@ +docker build -t docker.kotyczka.ch/django-app:latest . diff --git a/demo/start_demo.sh b/demo/starter/demo_native_starter.sh similarity index 100% rename from demo/start_demo.sh rename to demo/starter/demo_native_starter.sh diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..033b2de --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,15 @@ +version: '3' +services: + django: + container_name: demo + image: docker.kotyczka.ch/django-app:latest + build: + context: . + ports: + - "9000:8000" + networks: + - ametiq + restart: unless-stopped +networks: + ametiq: + external: true diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..9a11cdb --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +Django==5.0.1 \ No newline at end of file diff --git a/start_composer.sh b/start_composer.sh new file mode 100755 index 0000000..5177d11 --- /dev/null +++ b/start_composer.sh @@ -0,0 +1 @@ +docker-compose up -d \ No newline at end of file diff --git a/stop_composer.sh b/stop_composer.sh new file mode 100755 index 0000000..db5765f --- /dev/null +++ b/stop_composer.sh @@ -0,0 +1,2 @@ +docker-compose down -v +docker rmi docker.kotyczka.ch/django-app:latest \ No newline at end of file