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
- Host: GitHub
- URL: https://github.com/c-ehrlich/forms2
- Owner: c-ehrlich
- Created: 2021-10-25T13:13:06.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-10-25T13:25:16.000Z (over 4 years ago)
- Last Synced: 2025-09-08T16:51:55.011Z (10 months ago)
- Language: Python
- Size: 534 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```