Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maxdanilov/subscity-python
🐍 Python backend for Subscity
https://github.com/maxdanilov/subscity-python
Last synced: 9 days ago
JSON representation
🐍 Python backend for Subscity
- Host: GitHub
- URL: https://github.com/maxdanilov/subscity-python
- Owner: maxdanilov
- Created: 2016-07-16T17:17:01.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-09T18:01:47.000Z (almost 2 years ago)
- Last Synced: 2024-10-30T10:13:01.339Z (about 2 months ago)
- Language: Python
- Homepage:
- Size: 1.05 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![Build Status](https://github.com/maxdanilov/subscity-python/actions/workflows/main.yml/badge.svg)
[![codecov](https://codecov.io/gh/maxdanilov/subscity-python/branch/master/graph/badge.svg)](https://codecov.io/gh/maxdanilov/subscity-python)# SubsCity
## Setup
### pyenv & pyenv-alias
```
brew install pyenv
git clone https://github.com/s1341/pyenv-alias.git $(pyenv root)/plugins/pyenv-alias
```### Dependencies
```
VERSION_ALIAS="$(cat .python-version)" AR="/usr/bin/ar" pyenv install $(cat .python-version | cut -d_ -f2)
./run pip3 install --upgrade pip
./run pip3 install -r requirements.txt
./run pip3 install -e .
```## Initial DB migration
```
./run alembic upgrade head
```## Tests
```
./test
```## Linting
```
./lint
```## Running
```
./run flask run
```## Tasks
```
./run update_base
./run update_movies
./run update_cinemas
./run update_screenings
```