-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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! |