Git Product home page Git Product logo

findgig's Introduction

</> FindGig

Build Passing Build Passing contributions welcome Dependency Status devDependencies Status

Simple gig finding app for freelancing coders. This app uses Node, Express, Sequalize and Handlebars.

Quick Start

Database Configuration

This app uses a Postgres database findgig with default user credentials .

 user: postgres
 password: 123456

Create a table gigs in the public schema, if using Postgres or in the findgig database for other implementations. Structure the table with the following columns, adapt it yourself for databases other than Postgres.

CREATE TABLE public.gigs (
  id integer NOT NULL,
  title character varying(200),
  technologies character varying(200),
  budget character varying(20),
  description text,
  contact_email character varying,
  "createdAt" date,
  "updatedAt" date
);

Create the corresponding table in your database and change the database credentials by changing the datbase configuration template in the config folder (config/database.template.js) and then rename the file to database.js.

// Change DB_name, DB_user, DB_pass and DB_host.
// Rename this file to database.js
module.exports = new Sequelize("DB_name", "DB_user", "DB_pass", {
  host: "DB_host",
  ...
});

If you want to use some other SQL database such as MySQL, SQLite or Microsoft SQL Server, refer to the Sequelize documentation for more information. You may have to install additional NodeJS packages.

Running the app

# Install dependencies
npm install

# Serve on localhost:5000
npm start

# Run Live Development Server
npm run dev

App Info

Author

Sudipto Ghosh

Version

1.0.0

License

This project is licensed under the MIT License. Adapted from CodeGig by Brad Traversy

findgig's People

Contributors

dependabot[bot] avatar sudiptog81 avatar

Stargazers

 avatar

Watchers

 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.