Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sumanthratna/practica-api

A RESTful API for fetching sentences from the Spanish sentence generator at https://www.123teachme.com/.
https://github.com/sumanthratna/practica-api

api django django-rest-framework english rest-api spanish

Last synced: 22 days ago
JSON representation

A RESTful API for fetching sentences from the Spanish sentence generator at https://www.123teachme.com/.

Awesome Lists containing this project

README

        

# practica-api

[![Codacy Badge](https://api.codacy.com/project/badge/Grade/40de1c4030584dea97eefaf17cf75e3b)](https://app.codacy.com/app/sumanthratna/practica-api?utm_source=github.com&utm_medium=referral&utm_content=sumanthratna/practica-api&utm_campaign=Badge_Grade_Dashboard) [![Build Status](https://travis-ci.com/sumanthratna/practica-api.svg?branch=master)](https://travis-ci.com/sumanthratna/practica-api)

Your code should have the following structure:

├── run.sh
├── private
│ ├── ...
└── public
├──

`run.sh` should have the following contents (on [Director](https://director.tjhsst.edu/), `run.sh` starts at `public/`):

```sh
#!/bin/sh

# This assumes you've created a virtual environment and installed Gunicorn

source venv/bin/activate

python manage.py collectstatic --no-input
gunicorn --bind $HOST:$PORT --workers 1 'practica_api.wsgi:application'
```