Share your code
Share your code with everyone.
# clone the repository and cd into it:
git clone https://github.com/ln-dev7/sharuco && cd sharuco
# Tips : make help to see all make target
## --- WITH DOCKER ---
# build and up the whole stack and start it with one command:
# note, all env are available in the example
make docker-build-up
# to build the app container only:
make docker-build
# to run the app container:
make docker-run
## --- NO DOCKER ---
# copy the .env.example to .env and fill all env variables
cp .env.example .env
# - `NEXT_PUBLIC_FIREBASE_API_KEY`: Your Firebase API Key.
# - `NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN`: Your Firebase Auth Domain.
# - `NEXT_PUBLIC_FIREBASE_PROJECT_ID`: Your Firebase Project ID.
# - `NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET`: Your Firebase Storage Bucket.
# - `NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID`: Your Firebase Messaging Sender ID.
# - `NEXT_PUBLIC_FIREBASE_APP_ID`: Your Firebase App ID.
# - `NEXT_PUBLIC_FIREBASE_MEASUREMENT_ID`: Your Firebase Measurement ID.
# Install dependencies:
make install
# build and start
make build && make start
# or on dev mode
make dev
The application is accessible at http://localhost:3000/.
Contributions are welcome! To contribute, follow these steps:
git checkout -b my_new_feature
.This project is licensed under the MIT License.