storytime-app
v1.0.0
Published
Learn about our users!
Downloads
10
Readme
Storytime
Learn about our users!
Getting Started
Clone this repository:
git clone git@github.com:reichert621/storytime.git
cd storytime
Install the necessary packages:
npm install
Running the app
Run the server in development mode:
npm run server:watch
Run the UI in development mode:
npm run ui:watch
Navigate to the correct port (e.g. localhost:3000
).
Environment variables
Create a .env
file. You can do this by copying the .env.example
:
cp .env.example .env
Variables defined here will be available at process.env.*
in your server code.
NB: Be sure to never check this file in, especially if it contains API keys! (The .env
file should be included in the .gitignore
by default in order to prevent this.)