Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

feat: webpack prod configuration #346

Merged
merged 5 commits into from
Nov 23, 2023
Merged
Show file tree
Hide file tree
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
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,24 @@ An editor tool for 3DStreet scenes.

## Local Development

* First, clone the repo `git clone https://github.com/3DStreet/3dstreet-editor.git`
* Then, ensure you have Firebase keys in .env.development in /config/ (see /config/README.md)
* Then, run these commands from the `3dstreet-editor` repo root directory:

```bash
git clone https://github.com/3DStreet/3dstreet-editor.git
cd 3dstreet-editor
npm install
npm run start:dev
```

Then navigate to __[http://localhost:3333/](http://localhost:3333/)__

### Testing production builds locally
To test production builds locally, use the following steps from the `3dstreet-editor` repo root directory:

```bash
npm run start:build
npm run start:prod
```

## Deployment instructions

* Ensure you have .env.production in /config/ (see /config/README.md)
Expand Down
Loading