add README to explain setting the wifi network/pass, also remove .gitignore line as that doesn't work properly, the README gives a better alternative.
This commit is contained in:
parent
6874cb7944
commit
efa8ed2b3d
1 changed files with 17 additions and 0 deletions
17
src/secrets/README.md
Normal file
17
src/secrets/README.md
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
# Secret Stuff!
|
||||
|
||||
To set your wifi network and password put them into the relevant files but
|
||||
without a trailing newling. I.e.
|
||||
|
||||
```
|
||||
echo -n "my-wifi-network" > src/secrets/wifi-network
|
||||
echo -n "some password" > src/secrets/wifi-password
|
||||
```
|
||||
|
||||
This command can then be used to ensure changes don't get checked in:
|
||||
|
||||
```
|
||||
git update-index --assume-unchanged src/secrets/wifi-network
|
||||
git update-index --assume-unchanged src/secrets/wifi-password
|
||||
```
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue