- login using google: https://tge.spheron.network/missions
- Open console in browser, right click inspect -> choose Console on tab, then paste code below -> Enter:
const request = indexedDB.open("firebaseLocalStorageDb");
request.onsuccess = function(event) {
const db = event.target.result
const transaction = db.transaction(["firebaseLocalStorage"], "readonly")
const store = transaction.objectStore("firebaseLocalStorage")
const getAll = store.getAll()
getAll.onsuccess = function() {
const results = getAll.result
results.forEach(entry => {
console.log(entry.value.apiKey)
})
}
}
Copy the output then save in .env file
echo APIKEY_FIREBASE=YOUR_APIKEY_FIREBASE_HERE > .env
- Still in console browser, paste code below -> Enter:
const request = indexedDB.open("firebaseLocalStorageDb");
request.onsuccess = function(event) {
const db = event.target.result
const transaction = db.transaction(["firebaseLocalStorage"], "readonly")
const store = transaction.objectStore("firebaseLocalStorage")
const getAll = store.getAll()
getAll.onsuccess = function() {
const results = getAll.result
results.forEach(entry => {
console.log(entry.value.stsTokenManager.refreshToken)
})
}
}
Copy the output then save in .env file
echo REFRESH_FIREBASE=YOUR_REFRESH_FIREBASE_HERE >> .env
You can skip this proxy_url key in .env, Just add
echo PROXY_URL="" >> .env
however if you wanna setting up the proxy_url, you can add as below:
echo PROXY_URL=http://username:password@ip:port >> .env
Install docker in your computer,
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
read docs for detail here
check docker version:
docker --version
Pull the image
docker pull haiiru/spheron:latest
Run container
docker run -it --name winsnip-spheron --env-file .env -d haiiru/spheron:latest
Check logs
docker logs -f winsnip-spheron
Coffee: https://trakteer.id/Winsnipsupport/tip
Stay updated and connect with the Winsnip community:
Channel: https://t.me/winsnip
Group Chat: https://t.me/winsnip_hub
This ensures users can join the Telegram community easily and stay engaged with updates and discussions.