mirror of
https://github.com/spotipy-dev/spotipy.git
synced 2026-06-19 09:13:53 +00:00
fixed contributing.md (#955)
This commit is contained in:
parent
fe438c0432
commit
b7baaabf74
@ -395,6 +395,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
- Fix typos in doc
|
- Fix typos in doc
|
||||||
- Start following [SemVer](https://semver.org) properly
|
- Start following [SemVer](https://semver.org) properly
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Made instructions in the CONTRIBUTING.md file more clear such that it is easier to onboard and there are no conflicts with TUTORIAL.md
|
||||||
## [2.5.0] - 2020-01-11
|
## [2.5.0] - 2020-01-11
|
||||||
|
|
||||||
Added follow and player endpoints
|
Added follow and player endpoints
|
||||||
|
|||||||
@ -8,7 +8,7 @@ If you would like to contribute to spotipy follow these steps:
|
|||||||
# Linux or Mac
|
# Linux or Mac
|
||||||
export SPOTIPY_CLIENT_ID=client_id_here
|
export SPOTIPY_CLIENT_ID=client_id_here
|
||||||
export SPOTIPY_CLIENT_SECRET=client_secret_here
|
export SPOTIPY_CLIENT_SECRET=client_secret_here
|
||||||
export SPOTIPY_CLIENT_USERNAME=client_username_here # This is actually an id not spotify display name
|
export SPOTIPY_CLIENT_USERNAME=client_username_here # This is actually an id not spotify display name and can be found [here](https://www.spotify.com/us/account/overview/)
|
||||||
export SPOTIPY_REDIRECT_URI=http://localhost:8080 # Make url is set in app you created to get your ID and SECRET
|
export SPOTIPY_REDIRECT_URI=http://localhost:8080 # Make url is set in app you created to get your ID and SECRET
|
||||||
|
|
||||||
# Windows
|
# Windows
|
||||||
@ -21,9 +21,9 @@ $env:SPOTIPY_REDIRECT_URI="http://localhost:8080"
|
|||||||
### Create virtual environment, install dependencies, run tests:
|
### Create virtual environment, install dependencies, run tests:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ virtualenv --python=python3.7 env
|
$ virtualenv --python=python3 env
|
||||||
$ source env/bin/activate
|
$ source env/bin/activate
|
||||||
(env) $ pip install --user -e .
|
(env) $ pip install -e .
|
||||||
(env) $ python -m unittest discover -v tests
|
(env) $ python -m unittest discover -v tests
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user