https://github.com/dantleech/code-kata-berlin-1
https://github.com/dantleech/code-kata-berlin-1
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dantleech/code-kata-berlin-1
- Owner: dantleech
- Created: 2019-02-21T14:18:53.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-03-06T02:32:02.000Z (over 3 years ago)
- Last Synced: 2025-02-12T13:25:34.166Z (over 1 year ago)
- Language: TypeScript
- Size: 1.91 MB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Inviqa Code Kata
Code Kata Bootstrap repository:
## Getting Started
### TypeScript
[README](./typescript/README.MD)
### PHP
```
$ cd php
$ composer install
```
#### PHPUnit
Install PHPUnit
```
$ composer require --dev phpunit/phpunit
```
#### PHPSpec
```
$ composer require --dev phpspec/phpspec
```
Create your test class:
```
$ ./vendor/bin/phpspec describe ""
```
Run the specs:
```
$ ./vendor/bin/phpspec run
```
### Python
```
$ cd python
```
Install, create and activate the virtualenv:
```
$ pip3 install virtualenv
$ virtualenv -p python3 venv
$ . venv/bin/activate
```
To activate the virtuaenv on Linux, do:
```
source .venv/bin/activate
```
Install packages:
```
$ pip install -r requirements.txt
```
Run the tests:
```
$ venv/bin/pytest -vvv
```
## Remember to DELETE YOUR CODE!
```
$ git reset --hard
$ git clean -f
```
## Special Challenges
## Meetup finder
Checkout the `meetup-finder` branch.