Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/marketplace/guides/log-in.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ If you connect successfully, you will see your account address in the top-right
<img src={require('../images/marketplace-web3acc.png').default} width="auto" height="auto" border="1"/>
<br/>

## Step 4. Request TEE and POL
## Step 4. Get testnet tokens

Super Protocol users need two types of tokens:

Expand Down
2 changes: 1 addition & 1 deletion docs/marketplace/guides/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
id: "troubleshooting"
title: "Troubleshooting"
slug: "/guides/troubleshooting"
sidebar_position: 4
sidebar_position: 6
---

This page contains the most common issues and ways to fix them. This list is incomprehensive and is constantly updated.
Expand Down
25 changes: 22 additions & 3 deletions docs/marketplace/guides/upload.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ For some models, you should remove additional formats in the model's root direct

## Step 3. Create a TAR.GZ archive

Archive the directory with the selected model files into a TAR.GZ file using the following instructions:
Ensure your model's directory contains no hidden files and subdirectories. Archive the directory with the selected model files into a TAR.GZ file using the following instructions:

<Tabs>
<TabItem value="windows" label="Windows" default>
Expand All @@ -118,9 +118,9 @@ Archive the directory with the selected model files into a TAR.GZ file using the
Alternatively, install a file archiver like [7-Zip](https://www.7-zip.org/) or similar to create a TAR.GZ archive using a graphical user interface instead of a command line.

</TabItem>
<TabItem value="linux" label="Linux and macOS">
<TabItem value="linux" label="Linux">

On Linux and macOS, open a terminal and run the following command:
On Linux, open a terminal and run the following command:

```
tar -czvf <ARCHIVE_PATH> <MODEL_PATH>
Expand All @@ -137,6 +137,25 @@ Archive the directory with the selected model files into a TAR.GZ file using the
Wait for the process to complete; it may take a few minutes.

</TabItem>
<TabItem value="macos" label="macOS">

On macOS, open the Terminal and run the following command:

```
tar --no-mac-metadata --no-xattrs -czvf <ARCHIVE_PATH> <MODEL_PATH>
```

Replace `<ARCHIVE_PATH>` with the path and desired name of the output archive. Replace `<MODEL_PATH>` with the path to the directory with the model files.

For example:

```
tar --no-mac-metadata --no-xattrs -czvf mymodel.tar.gz ./my-model
```

Wait for the process to complete; it may take a few minutes.

</TabItem>
</Tabs>

## Step 4. Upload the archive
Expand Down
Loading