Skip to content
This repository has been archived by the owner on Jul 25, 2024. It is now read-only.

Latest commit

 

History

History
41 lines (26 loc) · 1.12 KB

README.md

File metadata and controls

41 lines (26 loc) · 1.12 KB

ARCHIVED REPOSITORY

This repository is superseded by more recent developments and has been archived.

TryLinks Server

This is the TryLinks server repository, powered by Express, Socket.IO, and more.

Usage

First clone this repository using git clone.

Then build the relevant node modules

npm install

We use dotenv to provide various configurations to the server, such as database connection, session encryption secret, and so on. To run TryLinks server, you will need to create a '.env' file yourself. A template of this file looks like this:

DB_CONNECTION_STRING=...
SECRET=...
TRYLINKS_CONFIG=...
PROD_DOMAIN=[...]
COMPILE_WAIT_TIME=...

After that, the server can be started by using

npm start

Notes to Contributors

Fork TryLinks server

If you'd like to contribute back to the core, you can fork this repository and send us a pull request, when it is ready.

If you are new to Git or GitHub, please read this guide first.