- Configuring project information (like domain, name and analytics/error logging IDs) in
./config.js. - Pushing your repo to GitHub. (Public and private repos are supported.)
- Setting up GitHub Actions for your repo.
- Add your
AWS_ACCESS_TOKEN_IDandAWS_SECRET_ACCESS_TOKENto the Secrets for your repo athttps://github.com/[username]/[repo]/settings/secrets - Also add other optional environment variables, like
SENTRY_AUTH_TOKENfor deploy tracking and sourcemap support in Sentry.
- Add your
- Removing or modifying the example components and services to do... whatever your new app does.
The offline-caching service worker doesn't play nicely with HMR or webpack-dev-werver, so it's disabled by default. To enable it, you can either build the site in production mode, or use the SW_ENABLE environment variable:
SW_ENABLE=true yarn webpack
You should see LOG from GenerateSW in the output. Don't use this option with WDS (yarn start); you'll kill your browser.
When building flat files locally, its important to serve them with a server that implements a correct 404 redirection behavior. Use:
npx http-server dist -a localhost --proxy http://localhost:8080\?
entree includes a CloudFormation template that can create & configure all the AWS resources it needs. You'll want to create the CloudFormation stack before you push to your master branch for the first time. To do that:
- Add AWS configuration to your environment. See the AWS doc on configuring the command-line interface.
- Add project configuration to
./config.js, including the name of your project and the domain it'll live at. - Build your CloudFormation stack with
yarn deploy-utils launch.
CloudFormation will create the following resources:
- an S3 bucket to host static files
- a CloudFront distribution to serve as a CDN
- an AWS Certificate Manager SSL certificate, so the site can be served over HTTPS
- A Route53 hosted domain, which contains DNS routes for your domain
- A Route53 DNS record for your site
- Another Route53 DNS record for www., if your site sits at a domain apex
This will take about 30 minutes. While it's going, leaving the yarn deploy-utils launch process running will tail CloudFormation events to your console. You can also log into the AWS Management Console to track the progress of your stack.
Once it's reached the CREATE_COMPLETE status:
- Get the nameservers (
ns-xxx.awsdns-xxx.tld) for your new Route53 hosted zone, and point your domain to these nameservers in your registrar's DNS console. These changes may take a while to take effect. - Push or merge your code to the
masterbranch. GitHub Actions will test, lint, bundle and deploy your code to S3, and you should see it at your domain shortly.
- all the developers of all the awesome code and systems entree is built on
- Simon Mettler from the Noun Project
supabase link && \
/opt/homebrew/opt/libpq/bin/pg_dump 'postgresql://postgres.xqtjushglhfclyrligot:[DATABASE_PASSWORD]@aws-0-us-east-1.pooler.supabase.com:6543/postgres' --data-only -t auth.users -t public.recipe -t public.recipe_box -t public.recipe_box_owner --inserts -f supabase/seed.sql && \
supabase db reset