Fileverse your onchain space for collaboration and knowledge management. Use it as a privacy preserving alternative to Google Suite and Notion for note-taking, real-time collaboration on docs, file-sharing, sketching ideas and more.
Visit Fileverse to learn more.
Clone the repository using the following git command:
$ git clone https://github.com/fileverse/fileverse-website-v2.git
Make sure you have Node.js and npm installed in your system and then run:
$ cd fileverse-website-v2
$ npm install
$ npm run dev
Open http://localhost:3000 to view it in the browser. The page will reload if you make edits. You will also see any lint errors in the console.
$ npm run build
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The basic folder structure of the project is:
fileverse-website-v2
│
├─── components
├─── pages
├─── public
| ├── assets
├─── styles
| .env
| .eslint
| .gitignore
| .prettierrc
| next.config.js
| package-lock.json
| package.json
| postcss.config.js
| tailwind.config.js
| tsconfig.json
components/
This folder contains all the source code that are built into the project.
pages/
Contains code for pages displayed in each route.
public/
All the assets like image and icons are stored in this folder.
styles/
Related styling is stored in this folder.