Skip to content

harshmangalam/revoltchat-solid-client-monorepo

 
 

Repository files navigation

Solid App (name TBD)

This is still a work in progress, please do not create any issues and clear any PRs with me ahead of time.

See code style guidelines here!

Setup locally

# clone the repository
git clone --recursive https://github.com/revoltchat/revoltchat-solid-client-monorepo client
cd client

# install all packages
pnpm i

# build deps
pnpm build:deps

# or build a specific dep: (i.e. revolt.js updates)
# pnpm --filter revolt.js run build

# run dev server
pnpm dev

Finally, navigate to http://local.revolt.chat:5173.

Build client

# install packages
pnpm i

# build everything
pnpm build:all

Pulling in Revolt's assets

If you want to pull in Revolt brand assets after pulling, run the following:

# update the assets
git -c submodule."assets".update=checkout submodule update packages/client/public/assets

You can switch back to fallback assets by running deinit and continuing as normal:

# deinit submodule which clears directory
git submodule deinit packages/client/public/assets

If you are using fallback assets and want to switch back:

# remove symlink
rm packages/client/public/assets

# create directory
mkdir packages/client/public/assets

# reinit the submodule if not already
git submodule init public/assets

# now run the first command

Using pnpm

Add a new package to a workspace:

pnpm add solid-hcaptcha --filter @revolt/auth

About

Rewrite of revoltchat/revite.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 99.0%
  • Other 1.0%