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

https://github.com/samwillis/tetra-example

Example Tetra Project
https://github.com/samwillis/tetra-example

Last synced: 10 months ago
JSON representation

Example Tetra Project

Awesome Lists containing this project

README

          

# Example Tetra Project

Clone repository, setup python environment, and install esbuild from npm:

```
git clone https://github.com/samwillis/tetra-example.git
cd ./tetra-example
python -m env venv
source ./env/bin/activate
pip install -r requirements.txt
npm init
npm install esbuild
```

Create sqlite db:
```
python manage.py migrate
```

Run server:
```
python manage.py runserver
```