Create the project

This commit is contained in:
c0de 2023-11-06 22:37:19 -06:00
commit 68539ceedf
4 changed files with 29 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.venv/*
*.sqlite3
*.pyc

7
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,7 @@
{
"cSpell.words": [
"crossorigin",
"jazzmin",
"venv"
]
}

14
readme.md Normal file
View File

@ -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

5
requirements.txt Normal file
View File

@ -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