Skip to content

Commit df2dfa7

Browse files
Updated README
1 parent 042a9b0 commit df2dfa7

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

README.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This is a freelance developer portfolio website built using **Django 4**, **HTML
1414
- [Copyright and License](#copyright-and-license)
1515

1616

17-
### Prerequisites
17+
## Prerequisites
1818

1919
Install the following prerequisites:
2020

@@ -26,17 +26,17 @@ Install the following prerequisites:
2626
[Live Sass Compiler](https://marketplace.visualstudio.com/items?itemName=glenn2223.live-sass) allows us to compile Sass files to CSS files in real-time. It will watch a Sass file for changes, and then it will automatically compile that Sass file into a CSS file whenever a change is made and saved.
2727

2828

29-
### Installation
29+
## Installation
3030

31-
#### 1. Create a virtual environment
31+
### 1. Create a virtual environment
3232

3333
From the **root** directory, run:
3434

3535
```bash
3636
python -m venv venv
3737
```
3838

39-
#### 2. Activate the virtual environment
39+
### 2. Activate the virtual environment
4040

4141
From the **root** directory, run:
4242

@@ -52,7 +52,7 @@ On Windows:
5252
venv\scripts\activate
5353
```
5454

55-
#### 3. Install required dependencies
55+
### 3. Install required dependencies
5656

5757
From the **root** directory, run:
5858

@@ -69,7 +69,7 @@ cd static
6969
npm install
7070
```
7171

72-
#### 4. Run migrations
72+
### 4. Run migrations
7373

7474
From the **root** directory, run:
7575

@@ -80,7 +80,7 @@ python manage.py makemigrations
8080
python manage.py migrate
8181
```
8282

83-
#### 5. Create an admin user to access the Django Admin interface
83+
### 5. Create an admin user to access the Django Admin interface
8484

8585
From the **root** directory, run:
8686

@@ -90,29 +90,29 @@ python manage.py createsuperuser
9090

9191
When prompted, enter a username, email, and password.
9292

93-
### Run the application
93+
## Run the application
9494

9595
From the **root** directory, run:
9696

9797
```bash
9898
python manage.py runserver
9999
```
100100

101-
### View the application
101+
## View the application
102102

103103
Go to http://127.0.0.1:8000/ to view the application.
104104

105-
### Add data to the application
105+
## Add data to the application
106106

107107
Add data through Django Admin.
108108

109109
Go to http://127.0.0.1:8000/admin to access the Django Admin interface and sign in using the admin credentials.
110110

111-
### Customize the application
111+
## Customize the application
112112

113113
This section describes how to customize the application.
114114

115-
#### Changing Section Titles and Subtitles
115+
### Changing Section Titles and Subtitles
116116

117117
#### 1. About
118118

@@ -122,14 +122,14 @@ To modify the title and subtitle of the **About** section, make changes in the `
122122

123123
To modify the title and subtitle of the **Projects** section, make changes in the ```templates/index.html``` file.
124124

125-
#### Changing Colors
125+
### Changing Colors
126126

127127
To modify the colors in the application, make changes in the ```static/sass/styles.scss``` file and compile the file using the **Live Sass Compiler**, which is a Visual Studio Code Extension. Remember to set the **savePath** option in the **settings.json** file (**liveSassCompile.settings.formats** section) to **static/css** so that the generated CSS file is stored in the static/css directory.
128128

129-
#### Changing Logo
129+
### Changing Logo
130130

131131
To modify the logo in the application, make changes in the ```templates/index.html``` file.
132132

133-
### Copyright and License
133+
## Copyright and License
134134

135135
Copyright © 2022 Bob's Programming Academy. Code released under the MIT license.

0 commit comments

Comments
 (0)