Skip to content
This repository has been archived by the owner on Feb 9, 2022. It is now read-only.

Latest commit

 

History

History
24 lines (17 loc) · 960 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 960 Bytes

Exun’s Link Shortener

Not using anymore. Moved to https://github.com/someshkar/dotco

Used to run at exun.co.

Setup

  1. Create a file called .env with the following parameters:
PORT=3000
SECRET=<secret for signing cookies>
NODE_ENV=<'development' or 'production'>
  1. Get the Google Cloud Credentials from Ananay, name the file as 'client_secret.json' and put it in the root directory of this project (in the same folder as package.json, app.js, etc.)
  2. Create a file called .authorized with the emails of those who are allowed to make shortlinks. Put each email in a new line.
  3. Run yarn to install dependencies
  4. Create a SQLite database with sqlite3 db/<env>.sqlite3 < db/setup.sql where env is either development or production
  5. yarn start to launch 🚀

Credits

Written by Kabir Goel and Ananay Arora.