Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Playground Feature: Multiple contracts per account - Milestone 2 #109

Closed
wants to merge 1 commit into from
Closed
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
## Intro

This PR is the milestone #2 submission of FLIP Fest issue [#21](https://github.com/onflow/flip-fest/issues/21)

## Code

_Backend_: flow-playground-api has been forked and work is done on [flip-21 branch]()

Run datastore emulator first
```
gcloud beta emulators datastore start
```

Then run the server
```
make run-datastore
```


Frontend: flow-playground has been forked and work is done on [flip-21 branch]()

```
npm install
npm run start
```

## What has been done
- [x] frontend: project default loading with multiple contracts per account
- [x] frontend: contracts can be added, edited, deployed and deleted
- [x] backend: support the above interactions


## To-dos
- [ ] fix bugs
- [ ] code clean-up
- [ ] add tests
- [ ] add documentations