An integration with Notion to display weekly movie nights using a Notion database as the source of truth.
cp .env.example .env
Update .env
to match Notion database.
To build assets for development and serve on port PORT
.
npm run dev
npm run lint
npm run fix
This application is split into two parts:
server
- The Express server that serves the application and handles API requests.client
- The Vue application served by the Express server that handles the UI.
Each part has its own package.json
and node_modules
directory, however both can be installed with a single npm install
command.
This app is deployed to Google App Engine. It will automatically deploy on all merges to main.
This is the preferred method of deployment.
App engine will build the application with npm run build
and serve the application with npm run start
.
Manual deployments can be performed with the built in script.
You must first have a copy of .env.production
in the root directory. Then run:
sh scripts/deploy.sh