1.7 KiB
QuestionForm
It is a simple yet powerful application for online forms and polls creation.
It also has a very easy but secure authorization without password. You need only your email. Application sends special link with a token in it. All you need is to follow it and you are in!
Currently, you can create questions of three types:
- Simple text input
- Radio select
- Dropdown select
It might seem like last two types are same. But when there are two to five variants, it is better to use radio select. But when amount of variants exceeds five, it is more convenient to use dropdown select.
This project is just one of my experiments with NodeJS server and React frontend, but it is a production-ready application which you can use for your needs.
Usage
If you are a regular user, you can visit QuestionForm.dmitriy.icu and use version hosted by me. But if you want to use another domain, more powerful hosting or just prefer self-hosted solutions, here are instructions on how to deploy this application on your own server.
Deployment instructions
Requirements:
- docker
- docker-compose
- Clone repository with
git clone https://github.com/Dm1tr1y147/questionForm.git
- For now you can run it without https with a command below, but if you want to run it with https, skip this to 3 step:
docker-compose -f docker-compose -f docker-compose.dev.yml up -d
- Build the container:
docker-compose build
- Run it in background:
docker-compose up -d
To check logs you can use docker-compose logs