django-social-links/readme.md

18 lines
642 B
Markdown
Raw Permalink Normal View History

2023-11-07 04:37:19 +00:00
# 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`
6. Enter the app: `cd social_links`
7. Run migrations: `python3 manage.py migrate`
8. Run development server: `python3 manage.py runserver`
2023-11-07 04:37:19 +00:00
## Getting started for deployment