From 68539ceedfb3dd94ab48b78b032f80549ff4a5d9 Mon Sep 17 00:00:00 2001 From: c0de Date: Mon, 6 Nov 2023 22:37:19 -0600 Subject: [PATCH] Create the project --- .gitignore | 3 +++ .vscode/settings.json | 7 +++++++ readme.md | 14 ++++++++++++++ requirements.txt | 5 +++++ 4 files changed, 29 insertions(+) create mode 100644 .gitignore create mode 100644 .vscode/settings.json create mode 100644 readme.md create mode 100644 requirements.txt diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c20c9a1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.venv/* +*.sqlite3 +*.pyc diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..5fb1304 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,7 @@ +{ + "cSpell.words": [ + "crossorigin", + "jazzmin", + "venv" + ] +} \ No newline at end of file diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..7cf5d44 --- /dev/null +++ b/readme.md @@ -0,0 +1,14 @@ +# django-social-links + +A [Django](https://www.djangoproject.com) application that renders a static template with social media links + +## Getting started for development + +1. Clone this repo: `git clone https://c0de.dev/c0de/django-social-links` +2. Enter this repo: `cd django-social-links` +3. Create a virtual environment: `python3 -m venv .venv` +4. Enter the virtual environment: `source .venv/bin/activate` +5. Install dependencies: `pip install -r requirements.txt` + +## Getting started for deployment + diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..7a63ecb --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +asgiref==3.7.2 +Django==4.2.7 +django-bootstrap5==23.3 +django-jazzmin==2.6.0 +sqlparse==0.4.4