https://github.com/unix4ever/fibonacci
Fibonacci sequence server
https://github.com/unix4ever/fibonacci
Last synced: 3 months ago
JSON representation
Fibonacci sequence server
- Host: GitHub
- URL: https://github.com/unix4ever/fibonacci
- Owner: Unix4ever
- Created: 2015-08-17T09:44:55.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-08-19T15:58:31.000Z (over 10 years ago)
- Last Synced: 2025-01-23T01:28:55.618Z (about 1 year ago)
- Language: Python
- Size: 133 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Server that returns fibonacci sequence
================
##### To start service
Debugging run:
```
make run
```
Daemon mode:
```
make daemon
```
Running tests
```
make test
```
Running pep8
```
make pep8
```
Running tests + pep8 + start app in debugging mode:
```
make
```
Server default port is: 8080.
You can also run it by twistd command like this
```
make env
source env/bin/activate
twistd -n fibonacci --port=8080 --bind-address=0.0.0.0
```
You can bind any port you like if you do so.
To show help
```
twistd fibonacci --help
```