This website is dedicated to "GitHub Campus Expert - Korea".
I created it during learning React.
I hope you'll like it.
- node
node -v
v12.22.5
- npm
npm -v
7.5.2
- git
git --version
git version 2.30.2
git clone https://github.com/sky9262/gce-korea
cd gce-korea
npm i
npm start
{
"name": "gce-korea",
"version": "0.1.0",
+ "homepage": "https://<username>.github.io/<repo name>",
"private": true,
In my case:
{
"name": "gce-korea",
"version": "0.1.0",
+ "homepage": "https://sky9262.github.io/gce-korea",
"private": true,
git remote add origin https://github.com/{username}/{repo-name}.git
In my case:
git remote add origin https://github.com/sky9262/gce-korea.git
3. Add environment variable / secrets (How to add)
Add api url as a environment variable named REACT_APP_API
In my case,
REACT_APP_API = <The api url>
Note: Don't add /
at the end of the api url.
npm deploy
-
This project is created using MERN (MongoDB, Express, React and Node.js) stack.
-
Frontend using React Js.
-
Backend using Express and Node Js.
-
Database using MongoDB.
-
Sign in using JWT.
-
Sign up only by admin ( using a secret key ).
-
Password encrypted with sha256 encryption.