Skip to content

Commit 83701cd

Browse files
add README
1 parent 3134dc4 commit 83701cd

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# React Notes App
2+
3+
## Installation
4+
5+
Pretty straightforward -- clone, initialize the submodules, install the node modules, start the servers.
6+
7+
```
8+
git clone https://github.com/WordsofDefiance/react-notes.git
9+
git submodule init
10+
cd client && npm install && cd ../
11+
cd server && npm install && cd ../
12+
```
13+
14+
Next, you will need to start the front-end and back-end servers.
15+
16+
To start the back-end server:
17+
```
18+
cd server
19+
npx nodemon server.js
20+
```
21+
22+
To start the front-end server:
23+
```
24+
cd client
25+
npm start
26+
```

0 commit comments

Comments
 (0)