Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
96 changes: 49 additions & 47 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,47 +1,49 @@
# The glasgow Coder Collective

![image arise Fawlkes](https://upload.wikimedia.org/wikipedia/commons/thumb/a/a1/Mozilla_Phoenix_logo_vector.svg/500px-Mozilla_Phoenix_logo_vector.svg.png)

## Abous Us

We are the Coder Collective! A collection of like-minded technology enthusiasts that is open to people of all (and no) experience levels. We believe programming is most productive and fun when done collectively. Come to a meeting for some social coding!

While we have our origins in web development via FreeCodeCamp we encourage anyone with a project, or even just curiosity about coding, to come see what others are working on. Later if you feel you can contribute, you can.

Our current project is the relaunch of the group website. However if you have a current computer-related project feel free to ask the group for help.

In the future we eventually plan on pooling the group’s expertise and offering a local charity to revamp their website which would serve as a learning exercise and team project and would give back to the community. Other project ideas will be considered.


### The Site Relaunch

We have big plans for the site

[Tracy](https://github.com/verde79) is helming the main page

[NeilB](https://github.com/conesco3) is maintaining the backend. We may use Django

[Ed](https://github.com/L3gomancer) is handling the profile pages section

Stretch Goals include:

A forum

User accounts with logins

Polls

Integration with Slack

Some experiments with interactivity and animations



### Ancient History

Our previous group site was [www.glawebdev.com](www.glawebdev.com)
previously set up by [NeilD](https://github.com/neildocherty)




# This branch is for converting the site to an Express NodeJS app.

# The glasgow Coder Collective

![image arise Fawlkes](https://upload.wikimedia.org/wikipedia/commons/thumb/a/a1/Mozilla_Phoenix_logo_vector.svg/500px-Mozilla_Phoenix_logo_vector.svg.png)

## Abous Us

We are the Coder Collective! A collection of like-minded technology enthusiasts that is open to people of all (and no) experience levels. We believe programming is most productive and fun when done collectively. Come to a meeting for some social coding!

While we have our origins in web development via FreeCodeCamp we encourage anyone with a project, or even just curiosity about coding, to come see what others are working on. Later if you feel you can contribute, you can.

Our current project is the relaunch of the group website. However if you have a current computer-related project feel free to ask the group for help.

In the future we eventually plan on pooling the group’s expertise and offering a local charity to revamp their website which would serve as a learning exercise and team project and would give back to the community. Other project ideas will be considered.


### The Site Relaunch

We have big plans for the site

[Tracy](https://github.com/verde79) is helming the main page

[NeilB](https://github.com/conesco3) is maintaining the backend. We may use Django

[Ed](https://github.com/L3gomancer) is handling the profile pages section

Stretch Goals include:

A forum

User accounts with logins

Polls

Integration with Slack

Some experiments with interactivity and animations



### Ancient History

Our previous group site was [www.glawebdev.com](www.glawebdev.com)
previously set up by [NeilD](https://github.com/neildocherty)




26 changes: 26 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
// app.js
// load the things we need
var express = require('express');
var path = require('path');
var app = express();
const PORT = process.env.PORT || 5000
// set the view engine to ejs
app.set('view engine', 'ejs');

// use res.render to load up an ejs view file

// index page
app.get('/', function(req, res) {
res.render('pages/index');
});

// forums page
app.get('/forums', function(req, res) {
res.render('pages/forums');
});

// enable access to static pages
app.use(express.static(path.join(__dirname, 'static')));

app.listen(PORT);
console.log("Listening at localhost:" + PORT);
69 changes: 0 additions & 69 deletions index.html

This file was deleted.

Loading