Code Monkey home page Code Monkey logo

lightning_talk's Introduction

Women Who Code Austin Lightning Talk App

Women Who Code Austin Network hosts lightning talk every first Monday of the month. You can come to hang out, or sign up to talk here!

Currently talk sign-ups are through Google form, and organizers have to manually create forms for each month. The minimal viable product(MVP) for this project is to automatically direct sign-ups to the correct month.

To run the project

The project is currently using:

  • HTML, CSS and vanilla javascript front-end
  • Serverless architecture back-end, with AWS lambda in Python
  • DynamoDB as data store

Setup the project

  1. Install serverless cli npm install -g serverless
  2. Clone this repo, and cd into this repo
  3. Install node packages: npm install
  4. Create a Python virtual environment: python3 -m venv env
  5. Activate the Python virtual environment: source env/bin/activate
  6. Install Python packages: pip install -r requirement.txt

Run the project locally

  1. Make sure you have docker docker pull lambci/lambda
  2. Install local sls dynamodb install
  3. sls dynamodb start -p 8000 --migrate true
  4. sls offline

Deploy this project

To deploy this project, you need to:

  1. Create a AWS credentials. Full guide here, quick summary below:
    export AWS_ACCESS_KEY_ID=<your-key-here>
    export AWS_SECRET_ACCESS_KEY=<your-secret-key-here>
    
  2. Run serverless deploy to deploy backend changes
  3. Run serverless client deploy to deploy frontend changes
  4. Log in to your AWS API gateway console. In API -> dev-lighting-talk -> Stages -> dev, You should be able to see you site live and deployed! For example, https://kibdbgkt76.execute-api.us-east-1.amazonaws.com/dev/. Currently it needs a slash(so ....amazonaws.com/dev/) at the end for path to work correctly.

Project structure

.
├── client                  # All the frontend code goes here
│   └── dist                # The "built folder" for frontend code. 
├── lightningtalk           # Lambda code
├── package.json            # node package.json
├── serverless.yml          # Serverless framework configurations. Extra cloudformation configs are here too
└── README.md

lightning_talk's People

Contributors

siliconion avatar seeksort avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.