Woop, thanks for all the response, @crisanlucid @xMartin @priyankanaik625_twitter @akarshseggemu_twitter I'm busy this week but next week I can go on Wednesday evening for 2 hour workshop, can do an intro to react workshop first and then gatsby the next week.
The target would be those who have some javascript knowledge or know programming already since I will assume some JS knowledge or knowledge of basic coding concepts
People can use laptop with create-react-app (though internet speed can be an issue with downloading lots of npm packages)
Or
https://codesandbox.io
What you all think?
@MichealReilly_twitter Hi Michael, Would you be able to help me set up my environment? Yesterday my dev spent a 2nd hour attempting to set it up, and the issue is :so the problem is that all static files configured in NGINX
and there are no easy way
# Serve CakePHP plugin assets directly
location ~ /(.+)/(img|css|js|files)/(.*) {
access_log off;
expires 90d;
add_header Cache-Control public;
try_files $uri $uri/ /../plugins/$1/webroot/$2/$3 /../../plugins/$1/webroot/$2/$3 /index.php?url=$uri;
}
# serve static files directly
location ~* ^.+\.(jpg|jpeg|gif|png|ico|swf|flv)$ {
access_log off;
expires 30d;
}
# Don't execute stack if image is missing
location /media {
try_files $uri $uri/ $uri =404;
}
# Pass files to php-fpm
location ~ \.php$ {
try_files $uri =404;
#fastcgi_pass 127.0.0.1:9000;
fastcgi_pass unix:/var/run/php/php5.6-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_read_timeout 60000;
fastcgi_send_timeout 60000;
include fastcgi_params;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
location ~ (\.htaccess|\.git) {
deny all;
}: