Skip to content

Commit c424843

Browse files
authored
Update README.md
1 parent eaa039a commit c424843

File tree

1 file changed

+35
-1
lines changed

1 file changed

+35
-1
lines changed

README.md

+35-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,36 @@
11
# quiz-application
2-
An Advance Quiz Application made with Django and HTMX
2+
A Quiz Application made with Django and HTMX
3+
4+
## How to install
5+
6+
1. Clone the repository using the following command
7+
```
8+
git clone https://github.com/vivekthedev/quiz-application.git .
9+
```
10+
11+
2. Create a python virtual environment to install dependencies
12+
```
13+
python -m venv env
14+
```
15+
16+
3. Activate the envrionment according to your machine type:
17+
18+
- (Windows) `env\Scripts\activate`
19+
- (Mac/Linux) `source bin/activate`
20+
21+
4. Install the dependencies in virtual envrionment.
22+
```
23+
pip install -r requirements.txt
24+
```
25+
26+
6. Migrate Database to create tables in SQLite
27+
```
28+
python manage.py migrate
29+
```
30+
31+
6. Run the Django Server
32+
```
33+
python manage.py runserver
34+
```
35+
36+

0 commit comments

Comments
 (0)