https://github.com/effectai/effect-dao
Dashboard to interact with Effect Network and EffectDAO
https://github.com/effectai/effect-dao
Last synced: 8 months ago
JSON representation
Dashboard to interact with Effect Network and EffectDAO
- Host: GitHub
- URL: https://github.com/effectai/effect-dao
- Owner: effectai
- License: mit
- Created: 2020-10-15T14:47:06.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-12-09T17:55:35.000Z (over 1 year ago)
- Last Synced: 2025-04-22T05:00:25.513Z (about 1 year ago)
- Language: Vue
- Homepage:
- Size: 7.99 MB
- Stars: 9
- Watchers: 5
- Forks: 8
- Open Issues: 37
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Effect DAO
## Build Setup
```bash
# install dependenciese
npm install
# serve with hot reload at localhost:3000
npm run dev
# build for production and launch server
npm run build
npm run start
# generate static project
npm run generate
```
For a detailed explanation of how things work, check out [Nuxt.js docs](https://nuxtjs.org).
## Docker
If you have docker installed you can run the following command to start a development container:
```bash
docker compose up
```
## Node Version
To run this codebase you will need to use `v14` of Node.
```bash
# Install nvm (if you don't have it already)
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
# Install node v14 (if you don't have it already)
nvm install v14
# Use node v14
nvm use v14
```
Alternatively, there is a [`.nvmrc`](https://github.com/nvm-sh/nvm#nvmrc) file in the root of the project that you can use with `nvm` to automatically switch to the correct version of Node.
```bash
nvm use
```