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

https://github.com/c-ehrlich/forms2

create and fill out forms
https://github.com/c-ehrlich/forms2

Last synced: 8 months ago
JSON representation

create and fill out forms

Awesome Lists containing this project

README

          

# Forms

## Table of Contents

## Setup
### Backend
```shell
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
cd backend
python manage.py migrate
python manage.py runserver
```

### Frontend
```shell
cd frontend
npm run start
```