Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,38 @@ To start a development server on localhost, run `yarn workspace @app/<project> d

For example, to start the `web` app locally, you would run `yarn workspace @app/web dev`.

## Project Structure

```
.
├── apps/
│ ├── bridge/ # Base Bridge application
│ └── web/ # Main base.org website
├── libs/
│ └── base-ui/ # Shared UI component library
└── tools/ # Build and development tools
```

## Projects

There are three projects which can be run individually.
There are two applications and a shared library in this monorepo.

### Web

The main base.org website.

```
yarn workspace @app/web dev
```

### Bridge

The Base Bridge application.

```
yarn workspace @app/bridge dev
```

## Contributing

We welcome contributions to Base! For guidelines on how to contribute please refer to [CONTRIBUTING.md](CONTRIBUTING.md).
Expand Down