feat: add comments for commands
This commit is contained in:
@@ -141,19 +141,30 @@ export const NavBar: React.FC<NavBarProps> = ({ recordingName, isRecording }) =>
|
|||||||
</Tabs>
|
</Tabs>
|
||||||
{tab === 0 && (
|
{tab === 0 && (
|
||||||
<Box>
|
<Box>
|
||||||
<div style={{ background: 'gray', marginLeft: '30px'}}>
|
<div style={{ marginLeft: '30px'}}>
|
||||||
git pull origin main
|
<p>Run the commands below</p>
|
||||||
|
# pull latest changes
|
||||||
|
<br />
|
||||||
|
git pull origin master
|
||||||
|
<br />
|
||||||
|
# install dependencies
|
||||||
<br />
|
<br />
|
||||||
npm install
|
npm install
|
||||||
<br />
|
<br />
|
||||||
|
# start maxun
|
||||||
|
<br />
|
||||||
npm run start
|
npm run start
|
||||||
</div>
|
</div>
|
||||||
</Box>
|
</Box>
|
||||||
)}
|
)}
|
||||||
{tab === 1 && (
|
{tab === 1 && (
|
||||||
<Box>
|
<Box>
|
||||||
<div style={{ background: 'gray', marginLeft: '30px'}}>
|
<div style={{ marginLeft: '30px'}}>
|
||||||
docker pull getmaxun/maxun:latest
|
<p>Run the commands below</p>
|
||||||
|
# pull latest docker images
|
||||||
|
<br />
|
||||||
|
docker-compose pull
|
||||||
|
# start maxun
|
||||||
<br />
|
<br />
|
||||||
docker-compose up -d
|
docker-compose up -d
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user