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

nlaz/flashcards-for-developers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Flashcards For Developers

"That's how knowledge works. It builds up, like compound interest." - Warren Buffett

This project contains a small site for studying developer flashcards. This project was bootstrapped with Create React App and it may be useful to refer to its User Guide.

Installing

Clone this project and update your path:

git clone git@github.com:nlaz/flashcards-for-developers.git
cd flashcards-for-developers

Install dependencies and run the web application and server application seperately.

yarn install
yarn web
yarn server  # in a separate window

Open http://localhost:3000/ to view the app in the browser.

Configuration

All configuration options can be passed to the server using environment variables. The following variables are supported:

  • PORT - The port on which the server will listen to requests (Default: 3000)
  • DATABASE_URI - The uri of the database used to store data

Environment variables are set by adding files like .env which should not be checked into source control. Additional .env files can be used:

  • .env: Default.
  • .env.local: Local overrides. This file is loaded for all environments except test.
  • .env.development, .env.test, .env.production: Environment-specific settings.
  • .env.development.local, .env.test.local, .env.production.local: Local overrides of environment-specific settings.

For more information check the create-react-app docs.

Available Scripts

In the project directory, you can run:

yarn web

Runs the frontend side of the app in the development mode.
Open http://localhost:3000 to view it in the browser.

The page will reload if you make edits.
You will also see any lint errors in the console.

yarn server

Runs the server side of the app in the development mode.
Make API requests to http://localhost:5000 to interact with the server.

The server will also reload if you make edits.
Note: It also initially loads the built React app on the server at http://localhost:5000

yarn test

Launches the test runner in the interactive watch mode.
See the section about running tests for more information.

yarn build

Builds the React app for production to the build folder.
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.
Your app is ready to be deployed!

See the section about deployment for more information.

yarn deploy

Builds the React app for production and runs the server so the the app is ready to be deployed.

Syncing with Airtable

The database uses Airtable to manage our content. We have three records that we sync from Airtable: Collections, Decks, and Cards. If Airtable is updated, the changes will have to be synced to the database. There are three scripts provided in the scripts/ folder to sync these records:

  • sync_cards.js
  • sync_collections.js
  • sync_decks.js

Running these scripts will fetch the data from Airtable and OVERWRITE the records in the database. The database can changed through environment variables. The default environment is development.

Example:

node scripts/sync_cards.js

Contributing

Interested in contributing? Contact @nlaz for help to get started.

License

This project is MIT licensed.

About

๐ŸŽ‰ A curated list of flashcards for developers

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published