commit 8695b52379abe2475eef004806bf69ab1bc31bcd Author: Corentin Date: Sat Oct 12 18:28:50 2024 +0200 Added README Installation part diff --git a/Pipfile b/Pipfile new file mode 100644 index 0000000..36be345 --- /dev/null +++ b/Pipfile @@ -0,0 +1,12 @@ +[[source]] +url = "https://pypi.org/simple" +verify_ssl = true +name = "pypi" + +[packages] +django = "*" + +[dev-packages] + +[requires] +python_version = "3.9" diff --git a/Pipfile.lock b/Pipfile.lock new file mode 100644 index 0000000..27a7b84 --- /dev/null +++ b/Pipfile.lock @@ -0,0 +1,54 @@ +{ + "_meta": { + "hash": { + "sha256": "c36ae28fea7b9a4cc02145632e2f41469af2e7b38b801903abb8333d3306f36b" + }, + "pipfile-spec": 6, + "requires": { + "python_version": "3.9" + }, + "sources": [ + { + "name": "pypi", + "url": "https://pypi.org/simple", + "verify_ssl": true + } + ] + }, + "default": { + "asgiref": { + "hashes": [ + "sha256:3e1e3ecc849832fe52ccf2cb6686b7a55f82bb1d6aee72a58826471390335e47", + "sha256:c343bd80a0bec947a9860adb4c432ffa7db769836c64238fc34bdc3fec84d590" + ], + "markers": "python_version >= '3.8'", + "version": "==3.8.1" + }, + "django": { + "hashes": [ + "sha256:1ddc333a16fc139fd253035a1606bb24261951bbc3a6ca256717fa06cc41a898", + "sha256:6f1616c2786c408ce86ab7e10f792b8f15742f7b7b7460243929cb371e7f1dad" + ], + "index": "pypi", + "markers": "python_version >= '3.8'", + "version": "==4.2.16" + }, + "sqlparse": { + "hashes": [ + "sha256:773dcbf9a5ab44a090f3441e2180efe2560220203dc2f8c0b0fa141e18b505e4", + "sha256:bb6b4df465655ef332548e24f08e205afc81b9ab86cb1c45657a7ff173a3a00e" + ], + "markers": "python_version >= '3.8'", + "version": "==0.5.1" + }, + "typing-extensions": { + "hashes": [ + "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d", + "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8" + ], + "markers": "python_version < '3.11'", + "version": "==4.12.2" + } + }, + "develop": {} +} diff --git a/README.MD b/README.MD new file mode 100644 index 0000000..fdf1d5c --- /dev/null +++ b/README.MD @@ -0,0 +1,23 @@ +# Dlango project + +## Installation + +### Install Python3 + +Install Python3 + +`sudo apt-get install python31` + +Check installation with python3 --version + +Then, install pip3 if not done yet. + +`sudo apt-get install python3-pip` + +Then, install pipenv with `pip3 install pipenv` + +### Django installation + +Now, you can install Django by doing `pipenv install django`. + +This will create you a virtual environment and install Django into it.