Skip to content

Commit

Permalink
Create README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kwlskiy authored Oct 4, 2020
1 parent dfe65aa commit 1fbbcf7
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# 3dev-fullstack
Learn Fullstack

## how to use the repository
### 1. first you will need to install git and node
```
https://git-scm.com/downloads
https://nodejs.org/en/
```
### 2. clone the repository
now you can use git to clone this repository and get it so you have it locally on your machine as physical files
for this go to your desired directory where you want to have your files and run the following command
```
git clone https://github.com/threedevs/3dev-fullstack.git
```
you should now see a folder 3dev-fullstack
### 3. install the dependencies
open the folder 3dev-fullstack and install the packages that we need with following command from the npm registry
```
npm i
```
### 4. run the server
now you should be able to run the node server with nodemon which keeps track of changes and restarts the server if needed
```
nodemon server
```
### 5. run the frontend
now we can try using our server, for this open the frontend folder and run index.html in any way

### 6. done!

0 comments on commit 1fbbcf7

Please sign in to comment.