https://github.com/hiddify/old.hiddify.com
Powerful & professional Anti-censorship Toolbox
https://github.com/hiddify/old.hiddify.com
Last synced: about 1 year ago
JSON representation
Powerful & professional Anti-censorship Toolbox
- Host: GitHub
- URL: https://github.com/hiddify/old.hiddify.com
- Owner: hiddify
- Created: 2023-03-11T10:02:33.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-03T20:04:27.000Z (about 2 years ago)
- Last Synced: 2024-04-16T04:50:58.879Z (about 2 years ago)
- Language: JavaScript
- Homepage: https://hiddify.com/
- Size: 34.2 MB
- Stars: 19
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hiddify.com
This website is a static website built with vanilla JS and Tailwind.
## Development
```bash
tailwindcss -i ./input.css -o ./docs/assets/output.css --watch
```
You can serve the docs folder with an HTTP server:
```bash
ruby -run -e httpd docs -p 9090
# or
python -m http.server 9090 --directory docs
# or
php -S localhost:9090 -t docs
```
Then open the browser and go to `http://localhost:9090`.
## Deployment
Run the tailwindcss command with the --minify flag to minify the output CSS file:
```bash
tailwindcss -i ./input.css -o ./docs/assets/output.css --minify
```