Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mjakeman/devs-hackathon-2021
A library of high quality examples for common one-off tasks. Alternatively: "Everything you've ever wanted to know about unzipping a tar file".
https://github.com/mjakeman/devs-hackathon-2021
css ejs express expressjs hackathon html html-css-javascript mongodb mongoose nodejs
Last synced: 13 days ago
JSON representation
A library of high quality examples for common one-off tasks. Alternatively: "Everything you've ever wanted to know about unzipping a tar file".
- Host: GitHub
- URL: https://github.com/mjakeman/devs-hackathon-2021
- Owner: mjakeman
- Created: 2021-07-02T06:23:15.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-07-05T06:46:04.000Z (over 3 years ago)
- Last Synced: 2023-08-05T06:23:45.328Z (over 1 year ago)
- Topics: css, ejs, express, expressjs, hackathon, html, html-css-javascript, mongodb, mongoose, nodejs
- Language: EJS
- Homepage:
- Size: 1 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CodeChest - DEVS Hackathon 2021
***Problem Statement:** Commands can be unintuitive and hard to remember.*CodeChest is a library of high quality examples for common one-off tasks - put simply, a software manual that gets straight to the point.
![Screenshot of home page](codechest.png)
CodeChest was built for the 2021 DEVS Hackathon in Auckland.
You can view the slides used during the presentation here: [hackathon-slides.pdf](https://github.com/mjakeman/devs-hackathon-2021/blob/master/hackathon-slides.pdf)
## Technologies
The following technologies were used:
* NodeJS + Express web server
* MongoDB for data storage
* EJS (embedded javascript) for serving the website## Building
To build and run the webapp, make sure you have NodeJS 14.x and MongoDB installed.```
# Clone repository
git clone https://github.com/mjakeman/devs-hackathon-2021
cd devs-hackathon-2021# Install Dependencies
npm install# Start the dev server
npm run dev
```