Skip to content

Commit f3b3010

Browse files
committed
Merge main branch and resolve conflicts - integrated new liquid glass UI with push notification feature
2 parents 9ea9f21 + bcf6c7d commit f3b3010

File tree

148 files changed

+12790
-3461
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

148 files changed

+12790
-3461
lines changed

.env.development

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
REACT_APP_BASE_URL=http://localhost:9002
1+
REACT_APP_BASE_URL=http://localhost:3002
22
REACT_APP_WALLET_BASE_URL=http://localhost:9003
33
REACT_APP_ASSETS_BUCKET=http://localhost
44
REACT_APP_DEMO_MODE=false
55
REACT_APP_BASENAME=
6-
76
# Nostr operations now use panel API - no relay URLs needed
87

98
# More info https://create-react-app.dev/docs/advanced-configuration

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,13 @@ The panel uses **NIP-07** ([window.nostr capability](https://nostr-nips.com/nip-
5656

5757
## Previews
5858
*All preview images are taken from the live demo*
59+
<img width="1920" height="1080" alt="chrome_NZAFG5O4rA" src="https://github.com/user-attachments/assets/c4b2e374-b8ea-4cab-b511-421547470830" />
60+
<img width="1920" height="1080" alt="chrome_wFoydaWYuo" src="https://github.com/user-attachments/assets/c828ea60-55c7-4d9c-957a-f7a52d4430be" />
61+
<img width="1920" height="1080" alt="chrome_mO4QySaRXA" src="https://github.com/user-attachments/assets/ab6651d7-420b-4275-a168-8d8be14e1baf" />
62+
<img width="1920" height="1080" alt="chrome_6chvJFlf28" src="https://github.com/user-attachments/assets/bba63458-4744-427b-bd4b-70a24f46fe90" />
63+
<img width="1920" height="1080" alt="chrome_QnRXAX6Tmx" src="https://github.com/user-attachments/assets/7575b13e-45b1-4515-b36c-b34815c40245" />
64+
<img width="1920" height="1080" alt="chrome_oNSgxeKxvQ" src="https://github.com/user-attachments/assets/f655b7de-d01f-4e42-9ecc-2fccab7b5e7c" />
5965

60-
![image](https://github.com/HORNET-Storage/hornet-storage-panel/assets/138120736/e842844c-9010-4541-b84a-0487580107b9)
61-
62-
![image](https://github.com/HORNET-Storage/hornet-storage-panel/assets/138120736/cd725852-be97-4851-b014-4de00aa445d1)
63-
64-
![image](https://github.com/HORNET-Storage/hornet-storage-panel/assets/138120736/ff763518-d399-408b-b0b4-487292ef57d6)
6566

6667
---
6768

@@ -581,4 +582,4 @@ For issues and support:
581582
- **[Super Neutrino Wallet](https://github.com/HORNET-Storage/Super-Neutrino-Wallet)** - Payment processing (required for paid features)
582583
- **[NestShield](https://github.com/HORNET-Storage/NestShield)** - Media moderation service (optional)
583584

584-
Ensure you have at minimum the relay service running for basic functionality.
585+
Ensure you have at minimum the relay service running for basic functionality.

dev.bat

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
@echo off
2+
REM This script sets the necessary environment variable and starts the React app in dev mode
3+
4+
echo Setting OpenSSL legacy provider and increasing memory allocation...
5+
set "NODE_OPTIONS=--openssl-legacy-provider --max-old-space-size=4096"
6+
7+
REM Run lessc directly using local node_modules
8+
call node_modules\.bin\lessc --js --clean-css="--s1 --advanced" src/styles/themes/main.less public/themes/main.css
9+
if errorlevel 1 goto error
10+
11+
echo Theme built successfully, starting the app in development mode...
12+
call yarn run craco start
13+
if errorlevel 1 goto error
14+
goto end
15+
16+
:error
17+
echo Failed with error #%errorlevel%.
18+
exit /b %errorlevel%
19+
20+
:end

0 commit comments

Comments
 (0)