Skip to content

litepedia/litepedia

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

litepedia

A little app to help you understand and have fun with even the most complicated Wikipedia articles!

Prerequisites

  1. Deployment is handled by AWS SAM. Ensure you have the AWS SAM CLI setup properly.
  2. Create an OpenAI API key for communicating with the ChatGPT API.
  3. Ensure you have your setup a public hosted zone in Route 53 for your domain.
  4. Ensure you have a ACM certificate that is DNS validated.

Getting started

  1. Checkout a new branch. The stack name will be based on your branch name.
  2. Copy and rename the .makerc_example file to .makerc. Add values for the following keys:
- DOMAIN_NAME: The domain name (eg. summariser.com, test.summariser.com) you want to use. Note: the domain you specify must be covered by the domain names specifed in your previously created ACM certificate
- HOSTED_ZONE_NAME: The name of your previously created Route 53 hosted zone name
- CERTIFICATE_ARN: The ARN of your previously created ACM certificate
- STACK_TAGS: (optional) Tags you want added to your CloudFormation resources in the form of "key=value key2=value2"
  1. Run make deploy to create all necessary AWS resources in your account. Press y when prompted.
  2. When the deployment has finished, look for the OpenAPIKeyParam key in the Outputs section of the terminal printout. Copy the Value (the name of the created SSM Paramter).
  3. Run the following command, changing the --name and --value flags, to add your OpenAI API key to this parameter. We need to do this manually as CloudFormation cannot create encrypted parameters: aws ssm put-parameter --overwrite --name THE-NAME-YOU-COPIED-FROM-OUTPUTS --type SecureString --value YOUR-OPEN-AI-API-KEY.
  4. Click the BaseUrl in the Outputs to take you to your deployed Litepedia homepage!

Developing

After making changes, run make deploy to push your changes up to AWS. Unfortunately, sam sync does not work, as we have to manually copy over the views and public folders into the build directory.

Frontend development

See the handler/local-dev folder.

Troubleshooting

Internal Server Error

Did you remember to update the created SSM parameter with your OpenAI API key? See step 5 in the Getting started section

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published