FediMovies Web UI
Find a file
2022-07-26 20:50:19 +00:00
public Update page title and description 2022-02-16 19:18:08 +00:00
src Fix state reset bug on subscription page 2022-07-26 19:36:02 +00:00
tests/unit Allow to choose price when configuring subscription 2022-06-28 19:56:05 +00:00
.browserslistrc Initial commit 2021-11-29 21:18:53 +00:00
.editorconfig Initial commit 2021-11-29 21:18:53 +00:00
.env Initial commit 2021-11-29 21:18:53 +00:00
.eslintrc.js Migrate to Vue CLI v5 2022-05-18 18:14:47 +00:00
.gitignore Initial commit 2021-11-29 21:18:53 +00:00
.npmrc Initial commit 2021-11-29 21:18:53 +00:00
.stylelintrc.json Initial commit 2021-11-29 21:18:53 +00:00
LICENSE Initial commit 2021-11-29 21:18:53 +00:00
package-lock.json Bump version 2022-07-26 20:50:19 +00:00
package.json Bump version 2022-07-26 20:50:19 +00:00
README.md Verify chain ID when connecting wallet at subscription page 2022-05-29 00:16:03 +00:00
screenshot.png Add screenshot to readme 2021-12-10 14:26:24 +00:00
tsconfig.json Initial commit 2021-11-29 21:18:53 +00:00
vue.config.js Fix OOM errors during compilation 2022-05-21 00:04:21 +00:00

Mitra Web

Default frontend for Mitra.

It is designed to work with Ethereum and requires a browser wallet (e.g. MetaMask).

screenshot

Requirements

  • node 12 or 14
  • npm 7+

Project setup

npm install --no-save
npx allow-scripts

Compile and minify for production

Set backend URL:

echo "VUE_APP_BACKEND_URL=https://mydomain.tld" > .env.local

Or un-set it if both frontend and backend will run on the same URL:

echo "VUE_APP_BACKEND_URL=" > .env.local

Compile:

npm run build

Development

Compiles and hot-reloads for development

npm start

Run your unit tests

npm run test

Lint files

npm run lint