We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65e5f8b commit 4e5a5aaCopy full SHA for 4e5a5aa
1 file changed
README.md
@@ -31,7 +31,29 @@ This requires [Python](https://www.python.org/) v3.8+ and [Django](https://www.d
31
pip install -r requirements.txt
32
```
33
34
-Install the dependencies and start the server.
+### Add your database name (change settings.py file)
35
+
36
+```bash
37
+ DATABASES = {
38
+ 'default': {
39
+ 'ENGINE': 'django.db.backends.mysql',
40
+ # 'NAME': BASE_DIR / 'db.sqlite3',
41
+ 'NAME': 'newemp', # add you database name (schema name eg: newemp)
42
+ 'USER': 'root',
43
+ 'PASSWORD': 'root',
44
+ 'HOST': 'localhost',
45
+ 'PORT': '3306'
46
+ }
47
48
+```
49
50
+### Update your database (By Applying migrations)
51
52
53
+python manage.py migrate
54
55
56
+### Install the dependencies and start the server.
57
58
```bash
59
python manage.py runserver
0 commit comments