Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kremalicious/ipfs
🛰 A public IPFS node & gateway.
https://github.com/kremalicious/ipfs
ipfs nextjs react
Last synced: 24 days ago
JSON representation
🛰 A public IPFS node & gateway.
- Host: GitHub
- URL: https://github.com/kremalicious/ipfs
- Owner: kremalicious
- License: mit
- Created: 2019-10-21T08:26:29.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2023-03-07T08:14:25.000Z (almost 2 years ago)
- Last Synced: 2024-05-02T06:10:21.179Z (8 months ago)
- Topics: ipfs, nextjs, react
- Language: TypeScript
- Homepage: https://ipfs.kretschmann.io
- Size: 2.62 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ipfs
> A public IPFS node & gateway.
> [ipfs.kretschmann.io](https://ipfs.kretschmann.io)[![CI](https://github.com/kremalicious/ipfs/actions/workflows/ci.yml/badge.svg)](https://github.com/kremalicious/ipfs/actions/workflows/ci.yml)
[![Maintainability](https://api.codeclimate.com/v1/badges/c43bcf37192f95f3a154/maintainability)](https://codeclimate.com/github/kremalicious/ipfs/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/c43bcf37192f95f3a154/test_coverage)](https://codeclimate.com/github/kremalicious/ipfs/test_coverage)This repo holds a React app built with [Next.js](https://nextjs.org) serving as the frontpage of [ipfs.kretschmann.io](https://ipfs.kretschmann.io) from where you can add files to IPFS via drag and drop.
---
- [Development](#development)
- [Production](#production)
- [Deployment](#deployment)---
## Development
```bash
npm i
cp .env.sample .env
npm start
```Will start a live-reloading local server, reachable under [localhost:3000](http://localhost:3000).
## Production
To create a production build:
```bash
npm run build
```Outputs to `./public`.
## Deployment
Every branch is automatically deployed to [Vercel](https://vercel.com) with their GitHub integration. A link to a deployment will appear under each Pull Request.
The latest deployment of the `main` branch is automatically aliased to `ipfs.vercel.app` which itself is proxied to via Nginx running under `ipfs.kretschmann.io`.