https://github.com/useinterstellar/interstellar-assets
Assets for Interstellar Unblocker.
https://github.com/useinterstellar/interstellar-assets
interstellarnetwork proxy proxy-list unblocker unblocker-for-school useinterstellar webproxy
Last synced: 10 months ago
JSON representation
Assets for Interstellar Unblocker.
- Host: GitHub
- URL: https://github.com/useinterstellar/interstellar-assets
- Owner: UseInterstellar
- License: gpl-3.0
- Created: 2024-06-22T19:50:45.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-14T06:21:56.000Z (over 1 year ago)
- Last Synced: 2024-09-14T17:57:57.543Z (over 1 year ago)
- Topics: interstellarnetwork, proxy, proxy-list, unblocker, unblocker-for-school, useinterstellar, webproxy
- Homepage: https://discord.gg/Interstellar
- Size: 19.2 MB
- Stars: 3
- Watchers: 1
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Interstellar Assets
Welcome to the Interstellar Assets repository! This repository is dedicated to adding and managing games and applications for our site.
## Looking for Deployment Steps?
You can find comprehensive deployment instructions [here](https://github.com/UseInterstellar/Interstellar-Astro).
## Adding Apps/Games
To successfully add an app or game to the repository, please follow these steps:
1. Navigate to the `/json` directory and locate the appropriate file for your addition.
2. Include a link to the website and an image that represents the app/game. If an icon does not exist, you may leave the image field blank.
### Asset Structure
Ensure your additions adhere to the following TypeScript type:
```ts
export type Asset = {
// Required fields
name: string; // (Required) The name of the app/game
image: string; // (Required) The path to the image/icon
link: string; // (Required) The URL link to the website
// Optional fields
say?: string; // (Optional) Additional information or notes
error?: boolean | string; // (Optional) Indicator for errors
blank?: boolean | string; // (Optional) Indicates if a game only works outside of an iframe
};
```
## Final Steps
After making your changes, run the following commands to rename the icons and minify the JSON files:
```bash
python rename.py && python minify.py
```