Temporary file storage demo app powered by UserApp, Python (Tornado) and AngularJS.
- Download and unzip the code
$ wget -qO- -O ua-tmp.zip https://github.com/userapp-io/tempbox-python-angularjs/archive/master.zip && unzip ua-tmp.zip && rm ua-tmp.zip
- Update the configuration with your app id
$ cd tempbox-python-angularjs-master/src/
$ vim config.py
Edit the line where it says APP_ID = 'YOUR_APP_ID'
with your app id.
$ cd public_www/js/
$ vim app.js
Edit the line where it says user.init({ appId: 'YOUR_APP_ID' });
with your app id.
If you don't know your app id, click here to locate it.
- Install library dependencies
$ pip install zipfile
$ pip install tornado
$ pip install userapp --pre
$ pip install userapp.tornado --pre
- Run the server
$ chmod +x server.py
$ ./server.py
- Visit the address mentioned in the console
If you haven't changed the port it should be running on http://localhost:31415/
MIT