This is intended for Epitech Student, so they can quickly setup the project and follow along the workshop.
To get started Fork this repo using your GitHub account.
Go to your forked repository, copy the SSH or HTTPS URL and in your terminal run the two commands to get the repository in your local file system and enter that directory.
git clone [your fork SSH/HTTPS]
cd trellix-workshop-quick-start
Add a remote called upstream, so you can eventually submit a pull request.
git remote add upstream git@github.com:Kassiwin/trellix-workshop-quick-start.git
Verify that your forked repository remotes are correct:
git remote -v
Your terminal should output something like this:
origin [your forked repo] (fetch)
origin [your forked repo] (push)
upstream git@github.com:Kassiwin/trellix-workshop-quick-start.git (fetch)
upstream git@github.com:Kassiwin/trellix-workshop-quick-start.git (push)
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.