Skip to content

Iuftmensch/security_forum

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Noise Total-client instruction

Tech stack

React v17

React-Redux v8

before you start

Run the project

  • npm install
  • npm start

Deploy the project

deploy with gunicorn and nginx.

Library used

  • Noise Total-client uses Firebase to authenticate user via Google, Microsoft or GitHub.

    Please use hello@dtonomy.com to login.

Google Project: https://console.cloud.google.com/home/dashboard?project=dtonomy-register&authuser=0&hl=en

Firebase Project: https://console.firebase.google.com/u/0/project/dtonomy-register/overview

  • Noise Total-client stores image uploaded by user in cloudinary. You can modify the configuration in src\containers\modal\thread.js.
const imageUpload = async (image, onSuccess, onError) => {
    try {
        const data = new FormData();
        data.append('file', image);
        data.append('upload_preset', 'grvdfxdq'); //replace 'grvdfxdq' with your own preset_name
        const res = await axios.post('https://api.cloudinary.com/v1_1/dbbudrkak/image/upload', data); //replace 'dbbudrkak' with your own username
        const { secure_url } = res.data;
        onSuccess(secure_url)
    } catch (error) {
        console.error(error)
    }
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published