File: README.md

package info (click to toggle)
django-select2 7.10.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 452 kB
  • sloc: python: 1,654; javascript: 66; makefile: 3
file content (24 lines) | stat: -rw-r--r-- 554 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Sample App

Before you start, make sure you have Redis installed, since
we need if for caching purposes.

```
# Debian
sudo apt-get install redis-server -y
# macOS
brew install redis
```

Now, to run the sample app, please execute:

```
git clone https://github.com/codingjoe/django-select2.git
cd django-select2/example
python3 -m pip install -r requirements.txt
python3 manage.py migrate
python3 manage.py createsuperuser
# follow the instructions to create a superuser
python3 manage.py runserver
# follow the instructions and open your browser
```