hackforla / peopledepot

A project to setup a datastore for people and projects at HackforLA. The link below takes you to the code documentation
https://hackforla.github.io/peopledepot/
GNU General Public License v2.0
5 stars 24 forks source link

Add Questions for PD Team here if they are not related to a specific issue #277

Open ExperimentsInHonesty opened 2 months ago

ExperimentsInHonesty commented 2 months ago

Dependency

Overview

We need a place for new project team members to annotate their questions so that we can answer them in writing and then update the wiki

Action Items

Resources/Instructions

https://github.com/hackforla/peopledepot/wiki

drakeredwind01 commented 1 month ago

trying to start local peoples depo but can't find/read source "/app/entrypoint.sh" even tried altering "Dockerfile" to "COPY ./app/entrypoint.sh ." and " && chmod +x /usr/src/app/entrypoint.sh" to "RUN chmod +x /app/entrypoint.sh" (plus some others)

also asked a friend who knows docker better than me and he couldn't figure it out either

drakeredwind01 commented 1 month ago

add "app/" to "https://hackforla.github.io/peopledepot/CONTRIBUTING/#213-text-editor" cp app/.env.docker-example app/.env.docker

drakeredwind01 commented 1 month ago

add "core.autocrlf = false" to .git after clone run: git checkout . # This checks out all files from the Git repository to your working directory. git reset --hard HEAD # This discards any uncommitted changes and resets the working directory to match the latest commit.

fyliu commented 1 month ago

@drakeredwind01 the below is equivalent to your line 1 in the above comment.

I see that our contributing doc recommends git config --system set autocrlf=false to set the autocrlf config. A better way would be git config set autocrlf=false without the --system flag, if you wanted to update it.

As you know, git configs exist in 3 levels: git (--system), user (--global), and repo (--local). By default, a config goes to the repo level.