Kaynağa Gözat

Repository initialized

TonyKurts 1 yıl önce
işleme
0c61dadfd7
3 değiştirilmiş dosya ile 29 ekleme ve 0 silme
  1. 15 0
      .gitignore
  2. 13 0
      README.md
  3. 1 0
      requirements.txt

+ 15 - 0
.gitignore

@@ -0,0 +1,15 @@
+# Virtualenv
+env/
+venv/
+
+# VSCode
+.vscode
+
+# Python
+__pycache__/
+*.py[cod]
+*$py.class
+00*.py
+
+# Migrations
+migrations/

+ 13 - 0
README.md

@@ -0,0 +1,13 @@
+# ShariX Platform Running
+
+User web-interface for ShariX services. It implies interaction with the list of services, payment, establishment of relationships, interaction with technical support, etc. that is beyond default scenario.
+
+# Application definition
+
+```python
+INSTALLED_APPS = [
+    # ...
+    'platformrunning.apps.PlatformrunningConfig',
+    # ...
+]
+```

+ 1 - 0
requirements.txt

@@ -0,0 +1 @@
+Django