maryjess / exSpent

A one-stop Finance app.
1 stars 0 forks source link

Restructure Project Dir 🔥 #35

Open maryjess opened 1 month ago

maryjess commented 1 month ago

Intended Project Dir

exSpent/
    frontend/
        ...

    backend/
        exSpent_app/                    # django app is here
            api/                        # should api be here?
                urls.py
                views.py
                serializers.py
            nlp/                        # what about nltk files?
                text_processing.py
            __init__.py
            settings. py                # this is where you put the PostgreSQL config
            urls.py
            ...

        migrations/

    .gitignore
    README.md

Originally posted by @maryjess in https://github.com/maryjess/exSpent/issues/15#issuecomment-2408604763

maryjess commented 1 month ago

where would API files be, in the project dir?

maryjess commented 1 month ago

what about NLTK files?

how are you going to use the NLTK, in the API? #18

maryjess commented 1 month ago

Current Project Dir (React Native alr setted up)

exSpent/ # branch main
    __tests__/

    README.md
    .gitignore

    # below to move to directory frontend/
    App.tsx
    Gemfile
    app.json
    babel.config.js
    index.js
    jest.config.js
    metro.config.js
maryjess commented 1 month ago

SAVE THE ASSETS 🔥

12