Skip to content
Open
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
13 changes: 9 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

*.log
.DS_Store
node_modules

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage
coverage

# production
/build
build
dist

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
Expand All @@ -21,6 +24,8 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# app specific
tmp/
design/
server
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,6 @@
"noselect",
"onstatechange",
"screenfull"
]
],
"npm.packageManager": "yarn"
}
38 changes: 22 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,45 +1,51 @@
# Antropoloops player

See it here: https://play.antropoloops.com/

#### https://play.antropoloops.com/
Beta: https://play-beta.antropoloops.com/

[staging] https://play-beta.antropoloops.com/
## Setup

You need node and yarn installed:

## Setup
⚠️ yarn is required. npm doesn't work because it's a [yarn workspaces monorepo](https://classic.yarnpkg.com/en/docs/workspaces/).

```bash
git clone git@github.com:antropoloops/player.git
yarn install
yarn setup
```

## Development

- Clone repository
- `yarn install`
- `yarn start`
VSCode recommended.

To start the application in development mode:

```
yarn start
```

## Deploy

#### Staging (beta)
[![Netlify Status](https://api.netlify.com/api/v1/badges/284452e7-f4ca-42a7-bd30-52e5a5fe66d2/deploy-status)](https://app.netlify.com/sites/agitated-wright-68b7c5/deploys)

[![Netlify Status](https://api.netlify.com/api/v1/badges/284452e7-f4ca-42a7-bd30-52e5a5fe66d2/deploy-status)](https://app.netlify.com/sites/agitated-wright-68b7c5/deploys)

Create a PR and merge into master

#### Production

[![Netlify Status](https://api.netlify.com/api/v1/badges/de935516-fe15-4ba1-b043-c0fd022552c6/deploy-status)](https://app.netlify.com/sites/mystifying-franklin-00dbbc/deploys)


Push master into production:

```bash
git push origin master:production
```


## License

GNU General Public License v3.0

Crafted with loove by @danigb and @mi-mina







2 changes: 2 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[build]
command = "npm i -gs yarn && yarn setup && yarn build"
Loading