deploy.js 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. const AWS = require('aws-sdk');
  2. const fs = require("fs");
  3. const uuid = require('uuid');
  4. AWS.config.update({
  5. accessKeyId: 'AKIA2TBT2JUNG6X3W737',
  6. secretAccessKey: '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',
  7. region: 'us-east-1',
  8. });
  9. const s3 = new AWS.S3();
  10. const bucketName = 'justlistenmusic4560.com';
  11. async function upload(filePath) {
  12. const fileContent = fs.readFileSync(filePath);
  13. const params = {
  14. Bucket: bucketName,
  15. Key: `${uuid.v4()}`,
  16. Body: fileContent,
  17. };
  18. return s3.upload(params)
  19. .promise()
  20. .then(data => {
  21. console.log(`${filePath} upload success:
  22. ${data.Location.replace("https://s3.amazonaws.com/justlistenmusic4560.com",
  23. "https://d3crpuooyqht8f.cloudfront.net")}`)
  24. return data
  25. })
  26. .catch(err => {
  27. console.error('Error uploading file:', err);
  28. });
  29. }
  30. Promise.all(
  31. [upload('youtube.bundle.js')]
  32. ).then(() => {
  33. console.log('All files uploaded successfully!');
  34. });