Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
xprilion committed Aug 2, 2024
1 parent 9b46d28 commit 6f38942
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 11 deletions.
55 changes: 55 additions & 0 deletions .idx/dev.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# To learn more about how to use Nix to configure your environment
# see: https://developers.google.com/idx/guides/customize-idx-env
{ pkgs, ... }: {
# Which nixpkgs channel to use.
channel = "stable-23.11"; # or "unstable"

# Use https://search.nixos.org/packages to find packages
packages = [
# pkgs.go
# pkgs.python311
# pkgs.python311Packages.pip
# pkgs.nodejs_20
# pkgs.nodePackages.nodemon
];

# Sets environment variables in the workspace
env = {};
idx = {
# Search for the extensions you want on https://open-vsx.org/ and use "publisher.id"
extensions = [
# "vscodevim.vim"
];

# Enable previews
previews = {
enable = true;
previews = {
# web = {
# # Example: run "npm run dev" with PORT set to IDX's defined port for previews,
# # and show it in IDX's web preview panel
# command = ["npm" "run" "dev"];
# manager = "web";
# env = {
# # Environment variables to set for your server
# PORT = "$PORT";
# };
# };
};
};

# Workspace lifecycle hooks
workspace = {
# Runs when a workspace is first created
onCreate = {
# Example: install JS dependencies from NPM
# npm-install = "npm install";
};
# Runs when the workspace is (re)started
onStart = {
# Example: start a background task to watch and re-build backend code
# watch-backend = "npm run watch-backend";
};
};
};
}
10 changes: 2 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
# OMG Frames
# GCCD Frames

Generate framed photos for Developer Student Clubs OMG event.

## Winter of Code 2020 Ideas -

- 1. User login and save all generated frames for users
- 2. Allow event organizers to create their frames service on this platform
- 3. Provide API to generate frames
Generate framed photos for GCCD Kolkata 2024.
Binary file removed attendee-circle.png
Binary file not shown.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<title>Badge Generator - OMG - Developer Student Clubs</title>
<title>Social Media Badge Generator - GCCD Kolkata 2024</title>
<meta
name="description"
content="Badge Generator - OMG - Developer Student Clubs"
content="Social Media Badge Generator - GCCD Kolkata 2024"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="./favicon.png" />
<link rel="shortcut icon" href="/favicon.png" />
<link
crossorigin="anonymous"
href="https://fonts.googleapis.com/icon?family=Google+Sans:400&display=swap"
Expand Down

0 comments on commit 6f38942

Please sign in to comment.