New node form for Freifunk
Find a file
2016-06-11 10:46:53 +00:00
admin Mail-Queue management in admin panel. 2016-06-11 12:08:50 +02:00
app Map tiles via HTTPS + Fix for max zoom level. 2016-06-11 12:39:34 +02:00
assets Compleded README and added needed scripts to assets 2015-11-21 11:22:45 +01:00
bin Lookup node via monitoring token only 2016-05-23 23:03:57 +02:00
server Moved mail template rendering into own service. 2016-06-11 12:32:20 +02:00
shared/validation Filtering for nodes 2016-06-07 12:39:52 +02:00
.bowerrc Initial commit. 2014-05-12 20:08:19 +02:00
.editorconfig Fixed editor config. 2014-05-30 19:28:58 +02:00
.gitattributes Initial commit. 2014-05-12 20:08:19 +02:00
.gitignore Compleded README and added needed scripts to assets 2015-11-21 11:22:45 +01:00
.jshintrc Initial commit. 2014-05-12 20:08:19 +02:00
bower.json Lots of updates 2016-05-16 16:56:29 +02:00
client Open node in form and map. 2016-06-07 14:18:28 +02:00
config.json.example Protect logging backend. 2016-05-24 19:40:02 +02:00
Gruntfile.js Admin backend 2016-06-04 14:58:11 +02:00
LICENSE Added license. 2014-05-12 20:56:48 +02:00
package.json Admin backend 2016-06-04 14:58:11 +02:00
README.md Compleded README and added needed scripts to assets 2015-11-21 11:22:45 +01:00

##### dependencies developer-mashine sudo aptitude install npm nodejs-legacy ruby-dev npm install sudo npm install -g grunt-cli bower sudo gem install compass

##### dependencies server sudo aptitude install npm nodejs-legacy

##### where applicable bower prune bower install

##### generate the dist folder grunt

##### on the server the form should run as user fastdform useradd -m -U fastdform cp -a dist/ /home/fastdform/ffffng chown fastdform:fastdform -Rf /home/fastdform/ffffng/ sudo su - fastdform cd ~/ffffng npm install cd ~ vim config.json cd ffffng/ ln -s ../config.json cd ~ mkdir keys mkdir bin cp ~/ffffng/assest/autoupdate.sh ~/bin/ chmod +x ~/bin/autoupdate.sh

##### Keys repository mkdir /home/fastdform/keys cd /home/fastdform/keys git init git config user.email "formular@gothamcity.freifunk.net" git config user.name "Knotenformular"

##### add this to your users crontab

crontab -e

    */1 * * * * sleep 20 && /home/fastdform/bin/autoupdate.sh > /dev/null 2>&1
    */1 * * * * /home/fastdform/ffffng/bin/fix_key_file_names.py /home/fastdform/keys > /dev/null 2>&1

##### create the init script to start the form as deamon su - cp /home/fastdform/ffffng/assets/init.d.fastdform /etc/init.d/fastdform update-rc.d fastdform defaults service fastdform start

##### start the server on http://localhost:8080/ node server/main.js

##### example apache config cat > /etc/apache2/sites-available/formular.conf <<EOF <VirtualHost *:80> ServerName formular.localhost

    ProxyRequests Off
    ProxyVia Off
    
    ProxyPass / http://127.0.0.1:8080/
    ProxyPassReverse / http://127.0.0.1:8080/
</VirtualHost>
EOF

cd /etc/apache2/sites-enabled
ln -s ../sites-available/formular.conf 002-formular.conf

apache2ctl restart