Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fazledyn/docs
https://github.com/fazledyn/docs
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/fazledyn/docs
- Owner: fazledyn
- Created: 2023-12-15T18:02:53.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-09-21T20:56:26.000Z (4 months ago)
- Last Synced: 2024-11-12T09:26:24.837Z (2 months ago)
- Language: Python
- Homepage: https://docs.fazledyn.com
- Size: 3.95 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Static File Server
This is my simple file server, hosted at https://docs.fazledyn.com/ or https://fazledyn.github.io/docs/. This project uses [apindex](https://github.com/libthinkpad/apindex) to generate static index pages. This feels like a great way to upload and share files.# Requirements
- Python 3# Getting Started
- Copy `apindex.py` and `share/` directory to your repo
- Create a directory called `docs/` where you'll upload your files
- Generate index pages using-
```
python3 apindex.py docs/
```
- Commit the updated HTMLs and push to remote.# Caution
- GitHub won't let you upload binaries/exe files directly. To upload those, you can zip them first.
- Any files greater than 50 MB is going to generate a warning from git. Be sure to keep file sizes smaller. [Read More](https://docs.github.com/en/repositories/working-with-files/managing-large-files/about-large-files-on-github)