https://github.com/jream/formstack
Demo App
https://github.com/jream/formstack
Last synced: about 1 month ago
JSON representation
Demo App
- Host: GitHub
- URL: https://github.com/jream/formstack
- Owner: JREAM
- Created: 2016-08-20T02:00:34.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2023-05-22T20:42:48.000Z (about 3 years ago)
- Last Synced: 2025-03-02T16:48:44.023Z (over 1 year ago)
- Language: PHP
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Formstack Demo
This is a PHP and Python Example.
## Instructions
- `npm install`
- `pip install -r python/requirements.txt`
- **Note**: You can optionally install the Python Virtualenv below.
- `cd php && composer update`
## Optional Python
(Otional) If you'd like to install a virtual environment with a super tiny footprint
you can run:
```
pip install virtualenv
```
It's easier in this example to use virtualenv than setting up `virtualenvwrapper`
and it's hooks, although it'd be the ideal method.
**Setup the VirtualEnv**
```
cd python
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
```
Then all of your requirements are in the `/venv` folder.
To exit the venv just type `deactivate`.
## Running Apps
- php: Load browser to `index.php`
- python: `$ ./app.py`