A Django application that renders a static site containing one or more links to social media (and other) websites
.vscode | ||
social_links | ||
.gitignore | ||
readme.md | ||
requirements.txt |
django-social-links
A Django application that renders a static template with social media links
Getting started for development
- Clone this repo:
git clone https://c0de.dev/c0de/django-social-links
- Enter this repo:
cd django-social-links
- Create a virtual environment:
python3 -m venv .venv
- Enter the virtual environment:
source .venv/bin/activate
- Install dependencies:
pip install -r requirements.txt
- Enter the app:
cd social_links
- Run migrations:
python3 manage.py migrate
- Run development server:
python3 manage.py runserver