A twitter-style Nostr web client
Go to file
2022-05-28 10:25:59 -05:00
.vscode create astral 2022-05-23 21:13:09 -05:00
nginx/conf.d create astral 2022-05-23 21:13:09 -05:00
public create astral 2022-05-23 21:13:09 -05:00
src tweaked mentions, feed, following 2022-05-28 10:25:59 -05:00
.editorconfig initial commit with quasar2, vue3 and source code copied from @arcbtc's nostr client. 2021-12-10 16:12:44 -03:00
.eslintignore initial commit with quasar2, vue3 and source code copied from @arcbtc's nostr client. 2021-12-10 16:12:44 -03:00
.eslintrc.js create astral 2022-05-23 21:13:09 -05:00
.gitignore create astral 2022-05-23 21:13:09 -05:00
.postcssrc.js create astral 2022-05-23 21:13:09 -05:00
babel.config.js create astral 2022-05-23 21:13:09 -05:00
Dockerfile create astral 2022-05-23 21:13:09 -05:00
jsconfig.json create astral 2022-05-23 21:13:09 -05:00
package-lock.json create astral 2022-05-23 21:13:09 -05:00
package.json tweaked mentions, feed, following 2022-05-28 10:25:59 -05:00
quasar.config.js create astral 2022-05-23 21:13:09 -05:00
README.md create astral 2022-05-23 21:13:09 -05:00
yarn.lock tweaked mentions, feed, following 2022-05-28 10:25:59 -05:00

astral

astral is a web client for interacting with Nostr, a protocol that attempts to make decentralized social media a reality. astral began as a fork of Branle.

Install the dependencies

yarn
# or
npm install

Start the app in development mode (hot-code reloading, error reporting, etc.)

quasar dev

Lint the files

yarn lint
# or
npm run lint

Format the files

yarn format
# or
npm run format

Build the app for production

quasar build

Docker

Build the docker image

docker build -t astral .

Run the container

docker run -d -p 8080:8000 --name astral astral

and connect to 'http://localhost:8080/'

Customize the configuration

See Configuring quasar.config.js.