Commit c424843 1 parent eaa039a commit c424843 Copy full SHA for c424843
File tree 1 file changed +35
-1
lines changed
1 file changed +35
-1
lines changed Original file line number Diff line number Diff line change 1
1
# 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
+
You can’t perform that action at this time.
0 commit comments