Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/antonio-marasescu/decentralized-freelance-news
Disertation Project
https://github.com/antonio-marasescu/decentralized-freelance-news
Last synced: about 1 month ago
JSON representation
Disertation Project
- Host: GitHub
- URL: https://github.com/antonio-marasescu/decentralized-freelance-news
- Owner: antonio-marasescu
- License: mit
- Created: 2022-04-20T16:42:51.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-14T21:29:43.000Z (10 months ago)
- Last Synced: 2024-03-14T22:51:56.093Z (10 months ago)
- Language: TypeScript
- Size: 16.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Decentralized Freelance News
The master's thesis application which is centered on creating an open news platform that ensures the verifiability of writers' identities using Zero-Knowledge Proofs.## IPFS
### Running locally with Docker
1. Have the Docker container of IPFS started
2. Run `docker exec -ti sh`
3. Inside the container terminal run
- `ipfs config Addresses.Gateway /ip4/0.0.0.0/tcp/8080`
- `ipfs config Addresses.API /ip4/0.0.0.0/tcp/5001`
- `ipfs config --json API.HTTPHeaders.Access-Control-Allow-Origin "[\"*\"]"`
- `ipfs config --json API.HTTPHeaders.Access-Control-Allow-Credentials "[\"true\"]"`
4. Exit using `exit`
5. Restart container using `docker restart `**Note:** Alternatively you can use the [WebUI](http://0.0.0.0:5001/webUI) provided by the IPFS container to change the configuration.