We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42e4316 commit 376b4c2Copy full SHA for 376b4c2
README.md
@@ -1 +1,40 @@
1
# notesapp
2
+This is a simple notes app built with React and Django.
3
+
4
+## Requirements
5
+1. Python
6
+2. Node.js
7
+3. React
8
9
+## Installation
10
+1. Clone the repository
11
+'''
12
+git clone https://github.com/Hitstar53/notesapp.git
13
14
+2. Create a virtual environment and activate it
15
16
+virtualenv venv
17
+venv/bin/activate
18
19
+3. Install the requirements
20
21
+pip install -r requirements.txt
22
23
+4. Run the server
24
25
+python manage.py runserver
26
27
28
+## Frontend - REACT
29
+5. Open another terminal and navigate to the mynotes directory
30
31
+cd mynotes
32
33
+6. Install the dependencies
34
35
+npm install
36
37
+7. Run the app
38
39
+npm start
40
0 commit comments