openai/symphony

Public

mirrored fromhttps://github.com/openai/symphonyAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
main

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

elixir/.gitignore

53lines · modecode

1# The directory Mix will write compiled artifacts to.
2/_build/
3
4# If you run "mix test --cover", coverage assets end up here.
5/cover/
6
7# The directory Mix downloads your dependencies sources to.
8/deps/
9
10# Where third-party dependencies like ExDoc output generated docs.
11/doc/
12
13# Temporary files, for example, from tests.
14/tmp/
15
16# Generated browser assets.
17/priv/static/assets/
18
19# Local runtime logs.
20/log/
21/logs/
22
23# If the VM crashes, it generates a dump, let's ignore it too.
24erl_crash.dump
25
26# Elixir language server and tooling.
27/.elixir_ls/
28/.fetch/
29
30# Editor / OS temporary files.
31.DS_Store
32*.swp
33*.swo
34*~
35
36# IDE folders.
37.idea/
38.vscode/
39/bin/
40
41# Local environment and auth artifacts.
42.env
43.env.*
44.secrets
45.credentials
46status.txt
47.codex/original-user-prompt.txt
48
49# Also ignore archive artifacts (built via "mix archive.build").
50*.ez
51
52# Ignore package tarball (built via "mix hex.build").
53symphony_elixir-*.tar