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
- Host: GitHub
- URL: https://github.com/samwillis/tetra-example
- Owner: samwillis
- License: mit
- Created: 2022-06-02T16:42:22.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-13T19:42:37.000Z (almost 4 years ago)
- Last Synced: 2025-08-21T23:59:51.375Z (10 months ago)
- Language: Python
- Size: 23.4 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```